|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace Jet_Form_Builder\Actions\Methods\Exceptions; |
|
5
|
|
|
6
|
|
|
7
|
use Jet_Form_Builder\Exceptions\Handler_Exception; |
|
8
|
|
|
9
|
class Base_Method_Executed extends Handler_Exception { |
|
10
|
|
|
11
|
public function save_exception(): bool { |
|
12
|
return false; |
|
13
|
} |
|
14
|
|
|
15
|
}
|