| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | class EmptyTitleException extends \Exception { |
||
| 29 | /** |
||
| 30 | * EmptyTitleException Constructor |
||
| 31 | * @param string $e exception message |
||
| 32 | */ |
||
| 33 | public function __construct($message = 'Poll title must not be empty') { |
||
| 34 | parent::__construct($message); |
||
| 35 | } |
||
| 36 | public function getStatus() { |
||
| 38 | } |
||
| 39 | |||
| 41 |