errors.gno
0.52 Kb ยท 12 lines
1package access
2
3const (
4 errInvalidAddress = "invalid address for role %s: %s"
5 errRoleNotFound = "role %s not found"
6 errUnauthorized = "unauthorized: caller %s is not %s"
7 errUnauthorizedAdminOrGov = "unauthorized: caller %s is not admin or governance"
8 errUnauthorizedAnyRole = "unauthorized: caller %s is not any of the roles %v"
9 errUnauthorizedRBAC = "unauthorized: caller %s is not rbac"
10 errInvalidAddressShort = "invalid address: %s"
11 errCallerNotUser = "caller is not user"
12)