1 | <?php |
||
5 | class NotImportableException extends \Exception |
||
6 | { |
||
7 | const ACTION_CREATE = 'create'; |
||
8 | const ACTION_UPDATE = 'update'; |
||
9 | const ACTION_PERSIST = 'persist'; |
||
10 | |||
11 | /** |
||
12 | * @param string $action |
||
13 | * @param int $code |
||
14 | * @param \Exception|null $previous |
||
15 | */ |
||
16 | public function __construct($action, $code = 0, \Exception $previous = null) |
||
24 | } |
||
25 |