13 lines
148 B
PHP
Raw Normal View History

2023-07-15 10:16:32 +08:00
<?php
declare(strict_types=1);
namespace ZipStream;
2023-08-09 15:01:26 +08:00
/**
* This class is only for inheriting
*/
2023-07-15 10:16:32 +08:00
abstract class Exception extends \Exception
{
}