diff options
Diffstat (limited to 'vendor/OAuth/OAuth2/Service/Exception')
4 files changed, 0 insertions, 56 deletions
diff --git a/vendor/OAuth/OAuth2/Service/Exception/InvalidAccessTypeException.php b/vendor/OAuth/OAuth2/Service/Exception/InvalidAccessTypeException.php deleted file mode 100755 index 398df2fd..00000000 --- a/vendor/OAuth/OAuth2/Service/Exception/InvalidAccessTypeException.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php - -namespace OAuth\OAuth2\Service\Exception; - -use OAuth\Common\Exception\Exception; - -/** - * Exception thrown when an invalid accessType for the Google Service is specified - */ -class InvalidAccessTypeException extends Exception -{ -} diff --git a/vendor/OAuth/OAuth2/Service/Exception/InvalidAuthorizationStateException.php b/vendor/OAuth/OAuth2/Service/Exception/InvalidAuthorizationStateException.php deleted file mode 100755 index fe9d550a..00000000 --- a/vendor/OAuth/OAuth2/Service/Exception/InvalidAuthorizationStateException.php +++ /dev/null @@ -1,10 +0,0 @@ -<?php - -namespace OAuth\OAuth2\Service\Exception; - -/** - * Exception thrown when the state parameter received during the authorization process is invalid. - */ -class InvalidAuthorizationStateException extends \Exception -{ -} diff --git a/vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php b/vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php deleted file mode 100755 index c6a51c88..00000000 --- a/vendor/OAuth/OAuth2/Service/Exception/InvalidScopeException.php +++ /dev/null @@ -1,17 +0,0 @@ -<?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 -{ -} diff --git a/vendor/OAuth/OAuth2/Service/Exception/MissingRefreshTokenException.php b/vendor/OAuth/OAuth2/Service/Exception/MissingRefreshTokenException.php deleted file mode 100755 index 21eece6a..00000000 --- a/vendor/OAuth/OAuth2/Service/Exception/MissingRefreshTokenException.php +++ /dev/null @@ -1,17 +0,0 @@ -<?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 service is requested to refresh the access token but no refresh token can be found. - */ -class MissingRefreshTokenException extends Exception -{ -} |