<?php
namespace App\Exceptions;
class ProductOfflineException extends BizException
{
public function __construct(string $message = '商品已下架')
parent::__construct($message);
}