- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.helidon.security.jwt.JwtException
-
- All Implemented Interfaces:
Serializable
public class JwtException extends RuntimeException
A RuntimeException for the JWT and JWK world.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JwtException(String message)
Exception with a message.JwtException(String message, Throwable cause)
Exception with a message and a cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
JwtException
public JwtException(String message)
Exception with a message.- Parameters:
message
- message to propagate
-
-