TokenNotFoundException.php 287 B

123456789101112
  1. <?php
  2. namespace app\common\exceptions;
  3. class TokenNotFoundException extends AppException
  4. {
  5. public function __construct($message = "", $data = [], $redirect = '')
  6. {
  7. $message = $message ?: 'token不存在';
  8. parent::__construct($message, $data, $redirect);
  9. }
  10. }