diff options
Diffstat (limited to 'vendor/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php')
-rw-r--r-- | vendor/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php b/vendor/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php new file mode 100644 index 0000000..2f1a7ef --- /dev/null +++ b/vendor/maennchen/zipstream-php/src/Exception/IncompatibleOptionsException.php @@ -0,0 +1,14 @@ +<?php + +declare(strict_types=1); + +namespace ZipStream\Exception; + +use ZipStream\Exception; + +/** + * This Exception gets invoked if options are incompatible + */ +class IncompatibleOptionsException extends Exception +{ +} |