2017-01-15 23:23:09 +00:00
|
|
|
package service
|
2021-09-29 16:13:23 +00:00
|
|
|
|
|
|
|
type badRequestError struct {
|
|
|
|
message string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *badRequestError) Error() string {
|
|
|
|
return e.message
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *badRequestError) BadRequestError() []map[string]string {
|
|
|
|
return nil
|
|
|
|
}
|