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

12 lines
201 B
PHP

<?php
namespace App\Exceptions;
class ShippingNotSupportedException extends BizException
{
public function __construct()
{
parent::__construct('所在地区不支持配送');
}
}