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 / EmptyArgumentException.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
EmptyArgumentException.php
14 lines
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4 }
5
6 if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
7 exit;
8 }
9
10 if ( ! class_exists( 'Freemius_EmptyArgumentException' ) ) {
11 class Freemius_EmptyArgumentException extends Freemius_InvalidArgumentException {
12 }
13 }
14