diff options
Diffstat (limited to 'vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php')
-rwxr-xr-x | vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php b/vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php new file mode 100755 index 00000000..c6a51c88 --- /dev/null +++ b/vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php @@ -0,0 +1,17 @@ +<?php + +/** + * @author David Desberg <david@daviddesberg.com> + * Released under the MIT license. + */ + +namespace OAuth\OAuth2\Service\Exception; + +use OAuth\Common\Exception\Exception; + +/** + * Exception thrown when a scope provided to a service is invalid. + */ +class InvalidScopeException extends Exception +{ +} |