All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.yourinspiration.spring.jwt.JwtServiceException Maven / Gradle / Ivy

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