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