diff options
Diffstat (limited to 'apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php')
-rw-r--r-- | apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php b/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php new file mode 100644 index 00000000000..809598e258e --- /dev/null +++ b/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.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 AccessTokenNotFoundException extends \Exception { +} |