Class SecureKeyStore.SecureKeyStoreException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jpos.iso.ISOException
org.jpos.security.SecureKeyStore.SecureKeyStoreException
- All Implemented Interfaces:
Serializable, Loggeable
- Enclosing interface:
SecureKeyStore
Exception type raised by
SecureKeyStore implementations.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with no detail message.SecureKeyStoreException(Exception nested) Constructs a new exception wrappingnested.SecureKeyStoreException(String detail) Constructs a new exception with the given detail message.SecureKeyStoreException(String detail, Exception nested) Constructs a new exception with the given detail message and cause. -
Method Summary
Methods inherited from class ISOException
dump, getNested, getTagName, printStackTrace, printStackTrace, printStackTrace, toStringModifier and TypeMethodDescriptionvoiddump(PrintStream p, String indent) Dumps a human-readable representation of this exception to the print stream.Returns the nested (wrapped) exception, if any.protected StringReturns the XML tag name used when dumping this exception.voidvoidvoidtoString()Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, setStackTraceMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface Loggeable
dumpModifier and TypeMethodDescriptiondefault voiddump(PrintStream p, String indent, LogRenderer.Type type) Dumps a representation of this object using the specified renderer type.
-
Constructor Details
-
SecureKeyStoreException
public SecureKeyStoreException()Constructs a new exception with no detail message. -
SecureKeyStoreException
Constructs a new exception with the given detail message.- Parameters:
detail- failure description
-
SecureKeyStoreException
Constructs a new exception wrappingnested.- Parameters:
nested- underlying cause
-
SecureKeyStoreException
Constructs a new exception with the given detail message and cause.- Parameters:
detail- failure descriptionnested- underlying cause
-