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