IncompatibleOptionsException.php 214 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace ZipStream\Exception;
  4. use ZipStream\Exception;
  5. /**
  6. * This Exception gets invoked if options are incompatible
  7. */
  8. class IncompatibleOptionsException extends Exception
  9. {
  10. }