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