12 lines
153 B
Go
12 lines
153 B
Go
package entity
|
|
|
|
type SimpleError string
|
|
|
|
func (err SimpleError) Error() string {
|
|
return string(err)
|
|
}
|
|
|
|
const (
|
|
ErrNotFound SimpleError = "not found"
|
|
)
|