<?php
namespace App\Exceptions;
class ProductNotEnoughException extends BizException
{
public function __construct(string $message = '商品库存不足')
parent::__construct($message);
}