BaseException.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SmashBalloon\Reviews\Common\Exceptions; |
| 4 | |
| 5 | class BaseException extends \Exception |
| 6 | { |
| 7 | public function formatted(): string |
| 8 | { |
| 9 | return sprintf( |
| 10 | 'Error Code: %s - %s in %s:%s', |
| 11 | $this->getCode(), |
| 12 | $this->getMessage(), |
| 13 | $this->getFile(), |
| 14 | $this->getLine() |
| 15 | ); |
| 16 | } |
| 17 | } |
| 18 |