InvalidArgumentException.php 247 B

1234567891011121314
  1. <?php
  2. namespace PhpZip\Exception;
  3. /**
  4. * Thrown to indicate that a method has been passed an illegal or
  5. * inappropriate argument.
  6. *
  7. * @author Ne-Lexa alexey@nelexa.ru
  8. * @license MIT
  9. */
  10. class InvalidArgumentException extends ZipException
  11. {
  12. }