| 1 | <?php |
||
| 12 | class WordManagerException extends Exception |
||
| 13 | { |
||
| 14 | |||
| 15 | protected $message; |
||
| 16 | /** |
||
| 17 | * Capture thrown error message |
||
| 18 | * |
||
| 19 | * @return [string] [Return caught error] |
||
|
|
|||
| 20 | */ |
||
| 21 | public function __construct($message) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Return thrown error message |
||
| 28 | * |
||
| 29 | * @return string error message |
||
| 30 | */ |
||
| 31 | public function errorMessage() |
||
| 35 | } |
||
| 36 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.