EncodingException.php 216 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace ZipStream\Exception;
  4. use ZipStream\Exception;
  5. /**
  6. * This Exception gets invoked if file or comment encoding is incorrect
  7. */
  8. class EncodingException extends Exception
  9. {
  10. }