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

15 lines
215 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace ZipStream\Exception;
use ZipStream\Exception;
/**
* This Exception gets invoked if options are incompatible
*/
class IncompatibleOptionsException extends Exception
{
}