6
0
Fork 0
jiqu-library-server/app/Exceptions/WalletFrozenException.php

12 lines
190 B
PHP

<?php
namespace App\Exceptions;
class WalletFrozenException extends BizException
{
public function __construct()
{
parent::__construct('可提账户已被冻结');
}
}