12 lines
171 B
Go
12 lines
171 B
Go
package domain
|
|
|
|
const (
|
|
UnexpectedStatusError SimpleError = "unexpected status"
|
|
)
|
|
|
|
type SimpleError string
|
|
|
|
func (err SimpleError) Error() string {
|
|
return string(err)
|
|
}
|