PluginProbe
Loginizer / 2.1.0
Loginizer v2.1.0
2.1.0 2.0.9 2.0.8 1.9.8 1.9.9 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 trunk 1.0 1.0.1 1.0.2 1.1.0 1.1.1 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 All 74 releases
loginizer / lib / hybridauth / Exception / ExceptionInterface.php

ExceptionInterface.php in Loginizer 2.1.0, at lib/hybridauth/Exception/ExceptionInterface.php

37 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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