diff options
Diffstat (limited to 'library/intl/src/Exception/UnknownCurrencyException.php')
-rw-r--r-- | library/intl/src/Exception/UnknownCurrencyException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/library/intl/src/Exception/UnknownCurrencyException.php b/library/intl/src/Exception/UnknownCurrencyException.php new file mode 100644 index 000000000..f94c93d8a --- /dev/null +++ b/library/intl/src/Exception/UnknownCurrencyException.php @@ -0,0 +1,11 @@ +<?php + +namespace CommerceGuys\Intl\Exception; + +/** + * This exception is thrown when an unknown currency code is passed to the + * CurrencyRepository. + */ +class UnknownCurrencyException extends InvalidArgumentException implements ExceptionInterface +{ +} |