Class CertificateStoreException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.avaya.clientservices.provider.certificate.CertificateStoreException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AppCertificateStoreException,AppCertificateStoreNotInUseException
public class CertificateStoreException extends java.lang.RuntimeExceptionCertificate store exception presents errors occurred while managing "generic" certificate stores.This class acts as a base class for application specific certificate store exceptions.
-
-
Constructor Summary
Constructors Constructor Description CertificateStoreException()Constructs a new exception with null as its message.CertificateStoreException(java.lang.String message)Constructs a new exception with specifiedmessage.CertificateStoreException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with specifiedmessageandcause.CertificateStoreException(java.lang.Throwable cause)Constructs a new exception with specifiedcause.
-
-
-
Constructor Detail
-
CertificateStoreException
public CertificateStoreException()
Constructs a new exception with null as its message.
-
CertificateStoreException
public CertificateStoreException(java.lang.String message)
Constructs a new exception with specifiedmessage.- Parameters:
message- the detailed message
-
CertificateStoreException
public CertificateStoreException(java.lang.Throwable cause)
Constructs a new exception with specifiedcause.- Parameters:
cause- the exception causing this one
-
CertificateStoreException
public CertificateStoreException(java.lang.String message, java.lang.Throwable cause)Constructs a new exception with specifiedmessageandcause.- Parameters:
message- the detail messagecause- the exception causing this one
-
-