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