UploadFailException.php 351 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020-04-15
  7. *
  8. *
  9. */
  10. namespace crmeb\exceptions;
  11. use think\exception\HttpResponseException;
  12. class UploadFailException extends HttpResponseException
  13. {
  14. public function __construct($message = '附件上传失败')
  15. {
  16. parent::__construct(app('json')->fail($message));
  17. }
  18. }