base-method-executed.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace Jet_Form_Builder\Actions\Methods\Exceptions; |
| 5 | |
| 6 | use Jet_Form_Builder\Exceptions\Handler_Exception; |
| 7 | |
| 8 | // If this file is called directly, abort. |
| 9 | if ( ! defined( 'WPINC' ) ) { |
| 10 | die; |
| 11 | } |
| 12 | |
| 13 | class Base_Method_Executed extends Handler_Exception { |
| 14 | |
| 15 | public function log() { |
| 16 | } |
| 17 | |
| 18 | } |
| 19 |