Package com.iizix.security
Class CodeSigningCertificateResolverException
- java.lang.Object
- java.lang.Throwable
- com.iizix.security.CodeSigningCertificateResolverException
- All Implemented Interfaces:
java.io.Serializable
public class CodeSigningCertificateResolverException extends java.lang.ThrowableException when certificate resolver is not present due to Java reflection calls that fails.- See Also:
- Serialized Form
Constructor Summary
Constructors Constructor Description CodeSigningCertificateResolverException()Constructs a new exception withnullas its detail message.CodeSigningCertificateResolverException(java.lang.String message)Constructs a new exception with the specified detail message.CodeSigningCertificateResolverException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.
Constructor Detail
CodeSigningCertificateResolverException
public CodeSigningCertificateResolverException()
Constructs a new exception withnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).
CodeSigningCertificateResolverException
public CodeSigningCertificateResolverException(java.lang.String message)
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- The detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
CodeSigningCertificateResolverException
public CodeSigningCertificateResolverException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated in this throwable's detail message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)