1package authorizable
2
3import "errors"
4
5var (
6 ErrNotInAuthList = errors.New("authorizable: caller is not in authorized list")
7 ErrNotSuperuser = errors.New("authorizable: caller is not superuser")
8 ErrAlreadyInList = errors.New("authorizable: address is already in authorized list")
9)