UploadException.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\exceptions;
  12. use Throwable;
  13. /**
  14. * Class AuthException
  15. * @package crmeb\exceptions
  16. */
  17. class UploadException extends \RuntimeException
  18. {
  19. public function __construct($message = "", $code = 0, Throwable $previous = null)
  20. {
  21. if (is_array($message)) {
  22. $errInfo = $message;
  23. $message = $errInfo[1] ?? '未知错误';
  24. $code = $errInfo[0] ?? 400;
  25. }
  26. parent::__construct($message, $code, $previous);
  27. }
  28. }