Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

errors.gno

0.42 Kb · 13 lines
 1package rbac
 2
 3const (
 4	ErrNoPendingOwner      = "no pending owner"
 5	ErrUnauthorized        = "caller is not owner"
 6	ErrPendingUnauthorized = "caller is not pending owner"
 7	ErrInvalidAddress      = "invalid address"
 8
 9	ErrInvalidRoleName        = "invalid role name"
10	ErrRoleDoesNotExist       = "role does not exist"
11	ErrRoleAlreadyExists      = "role already exists"
12	ErrCannotRemoveSystemRole = "cannot remove system role"
13)