酒店预订平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

3 年前
1234567891011121314151617
  1. <?php
  2. namespace app\common\exception;
  3. use think\Exception;
  4. use Throwable;
  5. class UploadException extends Exception
  6. {
  7. public function __construct($message = "", $code = 0, $data = [])
  8. {
  9. $this->message = $message;
  10. $this->code = $code;
  11. $this->data = $data;
  12. }
  13. }