13 lines
276 B
PHP
13 lines
276 B
PHP
|
<?php
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
if ( ! class_exists( 'Freemius_Exception' ) ) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
if ( ! class_exists( 'Freemius_InvalidArgumentException' ) ) {
|
||
|
class Freemius_InvalidArgumentException extends Freemius_Exception { }
|
||
|
}
|