| 1 | <?php |
||
| 12 | final class CartCurrencyMismatchException extends \DomainException |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param Currency $expectedCurrency |
||
| 16 | * @param Currency $unExpectedCurrency |
||
| 17 | * @param \Exception|null $previousException |
||
| 18 | */ |
||
| 19 | public function __construct(Currency $expectedCurrency, Currency $unExpectedCurrency, \Exception $previousException = null) |
||
| 29 | } |
||
| 30 |