AuthException.php 330 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Exceptions\Sign;
  3. use Exception;
  4. class AuthException extends Exception
  5. {
  6. /**
  7. * Create a new authentication exception.
  8. *
  9. * @param string $message
  10. * @return void
  11. */
  12. public function __construct($message = '请重新登录')
  13. {
  14. parent::__construct($message);
  15. }
  16. }