9 lines
267 B
Go
9 lines
267 B
Go
|
// Package apierror defines error types that can be returned by the API server
|
||
|
package apierror
|
||
|
|
||
|
type ErrBottinOrDBNotImplemented struct{}
|
||
|
|
||
|
func (e *ErrBottinOrDBNotImplemented) Error() string {
|
||
|
return "Database client or agecem/bottin API client not implemented"
|
||
|
}
|