Class JwsSigningException

All Implemented Interfaces:
Serializable

public class JwsSigningException extends JwsException
Represents an exception for when signing of the JWS fails.
Since:
2.0.0
See Also:
  • Constructor Details

    • JwsSigningException

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

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

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