PluginProbe ʕ •ᴥ•ʔ
Gallery : FooGallery / 3.3.3
Gallery : FooGallery v3.3.3
3.3.2 3.3.3 3.3.0 3.1.31 3.1.32 3.1.34 3.1.36 3.2.0 3.2.6 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 / InvalidArgumentException.php
foogallery / freemius / includes / sdk / Exceptions Last commit date
ArgumentNotExistException.php 3 days ago EmptyArgumentException.php 3 days ago Exception.php 3 days ago InvalidArgumentException.php 3 days ago OAuthException.php 3 days ago index.php 3 days ago
InvalidArgumentException.php
13 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_InvalidArgumentException' ) ) {
11 class Freemius_InvalidArgumentException extends Freemius_Exception { }
12 }
13