Files
zhamao-framework/src/ZM/Exception/ZMException.php

12 lines
123 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace ZM\Exception;
use Exception;
2021-09-01 14:14:00 +08:00
abstract class ZMException extends Exception
{
}