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

12 lines
209 B
PHP

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