bottin-ag/apierror/apierror.go

9 lines
267 B
Go
Raw Normal View History

// 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"
}