
de.yourinspiration.spring.jwt.JwtServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-jwt Show documentation
Show all versions of spring-jwt Show documentation
JWT integration for Spring web projects.
The newest version!
package de.yourinspiration.spring.jwt;
/**
* JwtService exception.
*
* @author Marcel Härle - [email protected]
*
*/
public class JwtServiceException extends RuntimeException {
private static final long serialVersionUID = -8909566234019643700L;
/**
* Constructs a new exception with the given detail message.
*
* @param msg
* the message
*/
public JwtServiceException(final String msg) {
super(msg);
}
/**
* Constructs a new exception with the given detail message and cause.
*
* @param msg
* the message
* @param cause
* the cause
*/
public JwtServiceException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy