| 1 |
<?php |
| 2 |
/*! |
| 3 |
* Hybridauth |
| 4 |
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth |
| 5 |
* (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace Hybridauth\Exception; |
| 9 |
|
| 10 |
/** |
| 11 |
* Hybridauth Exceptions Interface |
| 12 |
*/ |
| 13 |
interface ExceptionInterface |
| 14 |
{ |
| 15 |
/* |
| 16 |
ExceptionInterface |
| 17 |
Exception extends \Exception implements ExceptionInterface |
| 18 |
| RuntimeException extends Exception |
| 19 |
| | UnexpectedValueException extends RuntimeException |
| 20 |
| | | AuthorizationDeniedException extends UnexpectedValueException |
| 21 |
| | | HttpClientFailureException extends UnexpectedValueException |
| 22 |
| | | HttpRequestFailedException extends UnexpectedValueException |
| 23 |
| | | InvalidAuthorizationCodeException extends UnexpectedValueException |
| 24 |
| | | InvalidAuthorizationStateException extends UnexpectedValueException |
| 25 |
| | | InvalidOauthTokenException extends UnexpectedValueException |
| 26 |
| | | InvalidAccessTokenException extends UnexpectedValueException |
| 27 |
| | | UnexpectedApiResponseException extends UnexpectedValueException |
| 28 |
| | |
| 29 |
| | BadMethodCallException extends RuntimeException |
| 30 |
| | | NotImplementedException extends BadMethodCallException |
| 31 |
| | |
| 32 |
| | InvalidArgumentException extends RuntimeException |
| 33 |
| | | InvalidApplicationCredentialsException extends InvalidArgumentException |
| 34 |
| | | InvalidOpenidIdentifierException extends InvalidArgumentException |
| 35 |
*/ |
| 36 |
} |
| 37 |
|