new-admin-api/crmeb/exceptions/UploadFailException.php

19 lines
280 B
PHP

<?php
namespace crmeb\exceptions;
use think\exception\HttpResponseException;
class UploadFailException extends HttpResponseException
{
public function __construct($message = '附件上传失败')
{
parent::__construct(app('json')->fail($message));
}
}