Class InvalidCertificateException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.keypop.calypso.card.transaction.InvalidCertificateException
All Implemented Interfaces:
Serializable

public final class InvalidCertificateException extends RuntimeException
Indicates that the certificate is invalid.

This exception is thrown when a certificate fails validation checks. This includes issues with the certificate's signature validity, as well as problems with other essential fields of the certificate, such as the validity period, issuer and subject details, and any relevant constraints or extensions. It signifies that the certificate does not conform to the expected standards and requirements, either due to incorrect signing, expiration, revocation, or other compliance failures.

Since:
2.1.0
See Also:
  • Constructor Details

    • InvalidCertificateException

      public InvalidCertificateException(String message)
      Parameters:
      message - The message to identify the exception context.
      Since:
      2.1.0
    • InvalidCertificateException

      public InvalidCertificateException(String message, Throwable cause)
      Encapsulates a lower level exception.
      Parameters:
      message - Message to identify the exception context.
      cause - The cause.
      Since:
      2.1.0