Files
huangjingfen/pro_v3.5.1/crmeb/exceptions/ErpException.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

17 lines
259 B
PHP

<?php
namespace crmeb\exceptions;
use Throwable;
class ErpException extends \RuntimeException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}