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