diff options
Diffstat (limited to 'apps/oauth2/lib/Exceptions/ClientNotFoundException.php')
-rw-r--r-- | apps/oauth2/lib/Exceptions/ClientNotFoundException.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/oauth2/lib/Exceptions/ClientNotFoundException.php b/apps/oauth2/lib/Exceptions/ClientNotFoundException.php new file mode 100644 index 00000000000..cec7a24e22d --- /dev/null +++ b/apps/oauth2/lib/Exceptions/ClientNotFoundException.php @@ -0,0 +1,12 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ +namespace OCA\OAuth2\Exceptions; + +class ClientNotFoundException extends \Exception { +} |