| 1 | <?php |
||
| 15 | class AbstractException extends Exception |
||
| 16 | { |
||
| 17 | const COLOR_MESSAGE_PATTERN = "%s"; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Returns color message pattern |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getColorMessagePattern() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Returns exception type |
||
| 31 | * |
||
| 32 | * @return mixed |
||
| 33 | */ |
||
| 34 | public function getType() |
||
| 38 | } |
||
| 39 |