12 lines
147 B
PHP
Raw Normal View History

2023-05-10 13:39:12 +08:00
<?php
declare(strict_types=1);
namespace ZipStream;
/**
* This class is only for inheriting
*/
abstract class Exception extends \Exception
{
}