123456789101112131415161718 |
- <?php
- /**
- * Invalid Task Exception
- *
- * @package Kohana/Minion
- * @author Kohana Team
- * @copyright (c) Kohana Team
- * @license https://koseven.ga/LICENSE.md
- */
- class Kohana_Minion_Exception_InvalidTask extends Minion_Exception {
- public function format_for_cli()
- {
- return 'ERROR: '. $this->getMessage().PHP_EOL;
- }
- }
|