Class JwsVerifyingException

All Implemented Interfaces:
Serializable

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

    • JwsVerifyingException

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

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

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