diff options
Diffstat (limited to 'application/service')
-rw-r--r-- | application/service/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/service/user.php b/application/service/user.php index 336941ca4..1d678106a 100644 --- a/application/service/user.php +++ b/application/service/user.php @@ -93,7 +93,7 @@ class user { ->count_all_results(); if ($invitations + 1 > $CI->config->item('max_invitation_keys')) { - throw new \exceptions\PublicApiException("user/invitation-limit", "You can't create more invitation keys at this time."); + throw new \exceptions\InsufficientPermissionsException("user/invitation-limit", "You can't create more invitation keys at this time."); } $key = random_alphanum(12, 16); |