diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index f58bf88255..b021cedbcb 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -530,7 +530,7 @@ class Manager implements IManager { * Check for pre share requirements for user shares * * @param IShare $share - * @throws \Exception + * @throws GenericShareException */ protected function userCreateChecks(IShare $share) { // Check if we can share with group members only @@ -543,7 +543,8 @@ class Manager implements IManager { $this->groupManager->getUserGroupIds($sharedWith) ); if (empty($groups)) { - throw new \Exception('Sharing is only allowed with group members'); + $message_t = $this->l->t('Sharing is only allowed with group members'); + throw new GenericShareException($message_t, $message_t, 404); } }