robin-image-optimizer
/
libs
/
factory
/
freemius
/
includes
/
sdk
/
Exceptions
/
OAuthException.php
ArgumentNotExistException.php
5 months ago
EmptyArgumentException.php
5 months ago
Exception.php
5 months ago
InvalidArgumentException.php
5 months ago
OAuthException.php
5 months ago
index.php
6 months ago
OAuthException.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WBCR\Factory_Freemius_Rio_600\Sdk; |
| 4 | |
| 5 | if ( ! defined( 'ABSPATH' ) ) { |
| 6 | exit; |
| 7 | } |
| 8 | |
| 9 | if ( ! class_exists( 'WBCR\Factory_Freemius_Rio_600\Sdk\Freemius_Exception' ) ) { |
| 10 | exit; |
| 11 | } |
| 12 | |
| 13 | if ( ! class_exists( 'WBCR\Factory_Freemius_Rio_600\Sdk\Freemius_OAuthException' ) ) { |
| 14 | class Freemius_OAuthException extends Freemius_Exception { |
| 15 | |
| 16 | public function __construct( $pResult ) { |
| 17 | parent::__construct( $pResult ); |
| 18 | } |
| 19 | } |
| 20 | } |
| 21 |