Resources/ZipStream/Exception/EncodingException.php
Dennis Eichhorn 7e0153ea0f perm change
2023-03-25 22:32:11 +00:00

15 lines
217 B
PHP
Executable File

<?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
{
}