| 1 | <?php |
||
| 11 | class ExceptionCommand extends Command { |
||
| 12 | private $exception; |
||
| 13 | const NULL_MESSAGE = 'null exception'; |
||
| 14 | const NULL_CODE = '1234567890'; |
||
| 15 | |||
| 16 | 4 | public function __construct($message = self::NULL_MESSAGE, $code = self::NULL_CODE, $previous = null) |
|
| 20 | |||
| 21 | 4 | protected function _execute() |
|
| 25 | } |