backend/pkg/permission/domain/errors.go

16 lines
301 B
Go
Raw Normal View History

2025-10-03 08:38:12 +00:00
package domain
import "backend/pkg/library/errs"
const (
FailedToGetByID errs.ErrorCode = iota + 1
FailedToGetByClientID
FailedToGetPermission
FailedToGetPermissionByKey
FailedToGetRoleByID
FailedToGetByUID
FailedToGetByClientAndName
FailedToGetByClientAndName
FailedToGetByClientAndName
)