This commit is contained in:
2022-03-10 12:34:30 -05:00
parent 81f0c4c233
commit 346073b544
101 changed files with 12902 additions and 0 deletions
@@ -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
*/
}