diff options
Diffstat (limited to 'vendor/bakame/http-structured-fields/src/InvalidArgument.php')
-rw-r--r-- | vendor/bakame/http-structured-fields/src/InvalidArgument.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vendor/bakame/http-structured-fields/src/InvalidArgument.php b/vendor/bakame/http-structured-fields/src/InvalidArgument.php new file mode 100644 index 000000000..6c7c3344f --- /dev/null +++ b/vendor/bakame/http-structured-fields/src/InvalidArgument.php @@ -0,0 +1,11 @@ +<?php + +declare(strict_types=1); + +namespace Bakame\Http\StructuredFields; + +use InvalidArgumentException; + +final class InvalidArgument extends InvalidArgumentException implements StructuredFieldError +{ +} |