酒店预订平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
297 B

  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. }