Files
fleet/server/mock/errors.go
T
2021-06-06 15:07:29 -07:00

20 lines
279 B
Go

package mock
type Error struct {
Message string
}
func (e *Error) Error() string {
return e.Message
}
// implement fleet.NotFoundError
func (e *Error) IsNotFound() bool {
return true
}
// implement fleet.AlreadyExistsError
func (e *Error) IsExists() bool {
return true
}