RuntimeException.php 249 B

1234567891011121314
  1. <?php
  2. namespace PhpZip\Exception;
  3. /**
  4. * Runtime exception.
  5. * Exception thrown if an error which can only be found on runtime occurs.
  6. *
  7. * @author Ne-Lexa alexey@nelexa.ru
  8. * @license MIT
  9. */
  10. class RuntimeException extends \RuntimeException
  11. {
  12. }