2019-08-12 08:43:06 +00:00
|
|
|
package errors
|
|
|
|
|
|
|
|
// ErrNotImplemented returned for not implemented features
|
|
|
|
type ErrNotImplemented struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ErrNotImplemented) Error() string {
|
|
|
|
return "Error. Not implemented"
|
|
|
|
}
|
2019-09-01 05:14:23 +00:00
|
|
|
|
|
|
|
// ErrWrongConfig returned in case of incorrect configuration
|
|
|
|
type ErrWrongConfig struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e ErrWrongConfig) Error() string {
|
|
|
|
return "Error. Wrong configuration"
|
|
|
|
}
|