Files
huangjingfen/pro_v3.5.1/crmeb/exceptions/ErpException.php

17 lines
259 B
PHP
Raw Normal View History

2026-03-07 22:29:07 +08:00
<?php
namespace crmeb\exceptions;
use Throwable;
class ErpException extends \RuntimeException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}