PluginProbe ʕ •ᴥ•ʔ
Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel / trunk
Photo Gallery by FooGallery : Responsive Image Gallery, Masonry Gallery & Carousel vtrunk
trunk 1.10.3 2.0.24 2.1.34 2.2.44 2.3.3 2.4.32 3.0.6 3.1.11 3.1.12 3.1.13 3.1.20 3.1.25 3.1.26 3.1.26.1 3.1.26.2
foogallery / freemius / includes / sdk / Exceptions / OAuthException.php
foogallery / freemius / includes / sdk / Exceptions Last commit date
ArgumentNotExistException.php 4 years ago EmptyArgumentException.php 4 years ago Exception.php 4 years ago InvalidArgumentException.php 4 years ago OAuthException.php 4 years ago index.php 3 years ago
OAuthException.php
17 lines
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5
6 if ( ! class_exists( 'Freemius_Exception' ) ) {
7 exit;
8 }
9
10 if ( ! class_exists( 'Freemius_OAuthException' ) ) {
11 class Freemius_OAuthException extends Freemius_Exception {
12 public function __construct( $pResult ) {
13 parent::__construct( $pResult );
14 }
15 }
16 }
17