errors.gno
0.55 Kb · 15 lines
1package store
2
3const (
4 // Authorization errors
5 ErrAuthorizedCallerAlreadyRegistered = "authorized caller already registered"
6 ErrAuthorizedCallerNotFound = "authorized caller not found"
7 ErrInvalidPermission = "invalid permission"
8
9 // Data access errors
10 ErrKeyNotFound = "key not found"
11 ErrWritePermissionDenied = "write permission denied"
12 ErrUpdatePermissionDenied = "update permission denied"
13 ErrFailedCast = "failed to cast"
14 ErrSpoofedRealm = "rlm does not match the current crossing frame"
15)