Class JCEHandlerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jpos.iso.ISOException
org.jpos.security.SMException
org.jpos.security.jceadapter.JCEHandlerException
- All Implemented Interfaces:
Serializable, Loggeable
Signals that a JCE Handler exception of some sort has occurred.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with no detail message.Constructs a new exception wrapping the given cause.Constructs a new exception with the given detail message.Constructs a new exception with the given detail message and cause. -
Method Summary
Methods inherited from class SMException
getTagNameMethods inherited from class ISOException
dump, getNested, 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.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
-
JCEHandlerException
public JCEHandlerException()Constructs a new exception with no detail message. -
JCEHandlerException
Constructs a new exception with the given detail message.- Parameters:
s- failure description
-
JCEHandlerException
Constructs a new exception wrapping the given cause.- Parameters:
e- underlying cause
-
JCEHandlerException
Constructs a new exception with the given detail message and cause.- Parameters:
s- failure descriptione- underlying cause
-