37 lines
1.7 KiB
PHP
37 lines
1.7 KiB
PHP
<?php
|
|
/*!
|
|
* Hybridauth
|
|
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth
|
|
* (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html
|
|
*/
|
|
|
|
namespace Hybridauth\Exception;
|
|
|
|
/**
|
|
* Hybridauth Exceptions Interface
|
|
*/
|
|
interface ExceptionInterface
|
|
{
|
|
/*
|
|
ExceptionInterface
|
|
Exception extends \Exception implements ExceptionInterface
|
|
| RuntimeException extends Exception
|
|
| | UnexpectedValueException extends RuntimeException
|
|
| | | AuthorizationDeniedException extends UnexpectedValueException
|
|
| | | HttpClientFailureException extends UnexpectedValueException
|
|
| | | HttpRequestFailedException extends UnexpectedValueException
|
|
| | | InvalidAuthorizationCodeException extends UnexpectedValueException
|
|
| | | InvalidAuthorizationStateException extends UnexpectedValueException
|
|
| | | InvalidOauthTokenException extends UnexpectedValueException
|
|
| | | InvalidAccessTokenException extends UnexpectedValueException
|
|
| | | UnexpectedApiResponseException extends UnexpectedValueException
|
|
| |
|
|
| | BadMethodCallException extends RuntimeException
|
|
| | | NotImplementedException extends BadMethodCallException
|
|
| |
|
|
| | InvalidArgumentException extends RuntimeException
|
|
| | | InvalidApplicationCredentialsException extends InvalidArgumentException
|
|
| | | InvalidOpenidIdentifierException extends InvalidArgumentException
|
|
*/
|
|
}
|