com.codingapi.springboot.security.exception.TokenExpiredException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter-security Show documentation
Show all versions of springboot-starter-security Show documentation
springboot-starter-security project for Spring Boot
package com.codingapi.springboot.security.exception;
public class TokenExpiredException extends Exception {
public TokenExpiredException(String message) {
super(message);
}
}