diff options
Diffstat (limited to 'library/intl/src/Exception/InvalidArgumentException.php')
-rw-r--r-- | library/intl/src/Exception/InvalidArgumentException.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/library/intl/src/Exception/InvalidArgumentException.php b/library/intl/src/Exception/InvalidArgumentException.php new file mode 100644 index 000000000..afbe114a4 --- /dev/null +++ b/library/intl/src/Exception/InvalidArgumentException.php @@ -0,0 +1,11 @@ +<?php + +namespace CommerceGuys\Intl\Exception; + +/** + * This exception is thrown when an invalid argument is passed to a method. + * For example, a float amount instead of the expected string amount. + */ +class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface +{ +} |