|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace JFB_Modules\Security\Exceptions; |
|
5
|
|
|
6
|
// If this file is called directly, abort. |
|
7
|
if ( ! defined( 'WPINC' ) ) { |
|
8
|
die; |
|
9
|
} |
|
10
|
|
|
11
|
use Jet_Form_Builder\Exceptions\Handler_Exception; |
|
12
|
|
|
13
|
class Spam_Exception extends Handler_Exception { |
|
14
|
|
|
15
|
} |
|
16
|
|