java.security

Class SignatureException

public class SignatureException extends GeneralSecurityException

This exception is thrown when a problem is encountered with a digital signature.

UNKNOWN: updated to 1.4

Constructor Summary
SignatureException()
Create an instance with no descriptive error message.
SignatureException(String msg)
Create an instance with a descriptive error message.
SignatureException(String s, Throwable cause)
Create a new instance with a descriptive error message and a cause.
SignatureException(Throwable cause)
Create a new instance with a cause.

Constructor Detail

SignatureException

public SignatureException()
Create an instance with no descriptive error message.

SignatureException

public SignatureException(String msg)
Create an instance with a descriptive error message.

Parameters: msg the message

SignatureException

public SignatureException(String s, Throwable cause)
Create a new instance with a descriptive error message and a cause.

Parameters: s the descriptive error message cause the cause

Since: 1.5

SignatureException

public SignatureException(Throwable cause)
Create a new instance with a cause.

Parameters: cause the cause

Since: 1.5