6
0
Fork 0
jiqu-library-server/app/Exceptions/InvalidPaySerialNumberExcep...

12 lines
200 B
PHP

<?php
namespace App\Exceptions;
class InvalidPaySerialNumberException extends BizException
{
public function __construct()
{
parent::__construct('无效的支付流水号');
}
}