Class JwsException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JwsSigningException, JwsVerifyingException

public class JwsException extends JwtRuntimeException
Represents a generic exception for JWS operations.
Since:
2.0.0
See Also:
  • Constructor Details

    • JwsException

      public JwsException(String message)
      Constructs a new JwsException with the provided exception message.
      Parameters:
      message - The exception message.
    • JwsException

      public JwsException(String message, Throwable throwable)
      Constructs a new JwsException with the provided exception message and underlying throwable.
      Parameters:
      message - The exception message.
      throwable - The underlying throwable.
    • JwsException

      public JwsException(Throwable throwable)
      Constructs a new JwsException with the provided underlying throwable.
      Parameters:
      throwable - The underlying throwable.