Class ExecException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.highdeal.iec.ExecException
- All Implemented Interfaces:
Serializable
Exception thrown when an Import/Export Connector (IEC) application executes of a customized
Java task referred to in the processed configuration scenario.
It includes an exception message.
Implementation in Your IEC Application
Refer to the implementation information in the Java task topic.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new instance ofExecExceptionwithnullas exception message.ExecException(String message) Constructs a new instance ofExecExceptionwith the specified text message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExecException
public ExecException()Constructs a new instance ofExecExceptionwithnullas exception message. -
ExecException
Constructs a new instance ofExecExceptionwith the specified text message.- Parameters:
message- The exception message that specifies more information details; It is accessible by theThrowable.getMessage()method.
-