Files
eway/internal/entity/error.go
2024-01-24 16:12:16 +03:00

12 lines
153 B
Go

package entity
type SimpleError string
func (err SimpleError) Error() string {
return string(err)
}
const (
ErrNotFound SimpleError = "not found"
)