15 lines
249 B
PHP
15 lines
249 B
PHP
<?php
|
|
|
|
namespace PhpZip\Exception;
|
|
|
|
/**
|
|
* Runtime exception.
|
|
* Exception thrown if an error which can only be found on runtime occurs.
|
|
*
|
|
* @author Ne-Lexa alexey@nelexa.ru
|
|
* @license MIT
|
|
*/
|
|
class RuntimeException extends \RuntimeException
|
|
{
|
|
}
|