1 | <?php |
||
18 | class CurrencyNotFoundException extends \RuntimeException |
||
19 | { |
||
20 | protected $currency; |
||
21 | |||
22 | /** |
||
23 | * @param string $currency |
||
24 | */ |
||
25 | public function __construct($currency, $message = null, $code = 0, \Exception $previous = null) |
||
31 | |||
32 | /** |
||
33 | * @return string return the currency unknown |
||
34 | */ |
||
35 | public function getCurrency() |
||
39 | } |
||
40 |