fix
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?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
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user