Files
kurious/internal/domain/error.go
2023-11-21 15:07:54 +03:00

12 lines
171 B
Go

package domain
const (
UnexpectedStatusError SimpleError = "unexpected status"
)
type SimpleError string
func (err SimpleError) Error() string {
return string(err)
}