| 1 | <?php |
||
| 19 | class RejectionException extends \RuntimeException |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var mixed |
||
| 23 | */ |
||
| 24 | protected $reason; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param mixed $reason |
||
| 28 | * @param string $message |
||
| 29 | */ |
||
| 30 | public function __construct($reason, $message = null) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return mixed |
||
| 47 | */ |
||
| 48 | public function reason() |
||
| 52 | } |
||
| 53 |