Class ProprietaryFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.jpos.emv.ProprietaryFormatException
- All Implemented Interfaces:
Serializable
Thrown when an EMV field uses a proprietary format that cannot be processed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.ProprietaryFormatException(String message) Constructs a new exception with the given detail message.ProprietaryFormatException(String message, Throwable cause) Constructs a new exception with the given detail message and cause.Constructs a new exception wrapping the given cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ProprietaryFormatException
public ProprietaryFormatException()Default constructor. -
ProprietaryFormatException
Constructs a new exception with the given detail message.- Parameters:
message- failure description
-
ProprietaryFormatException
Constructs a new exception with the given detail message and cause.- Parameters:
message- failure descriptioncause- underlying cause
-
ProprietaryFormatException
Constructs a new exception wrapping the given cause.- Parameters:
cause- underlying cause
-