|
1
|
<?php |
|
2
|
if ( ! class_exists( 'Freemius_Exception' ) ) { |
|
3
|
exit; |
|
4
|
} |
|
5
|
|
|
6
|
if ( ! class_exists( 'Freemius_OAuthException' ) ) { |
|
7
|
class Freemius_OAuthException extends Freemius_Exception { |
|
8
|
public function __construct( $pResult ) { |
|
9
|
parent::__construct( $pResult ); |
|
10
|
} |
|
11
|
} |
|
12
|
}
|