com.ibm.manplato
Class ConduitHandlerException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ibm.manplato.ConduitHandlerException
- All Implemented Interfaces:
- java.io.Serializable
- public class ConduitHandlerException
- extends java.lang.Exception
The Conduit Handler Exception class.
This exception is thrown by the ConduitHandler whenever any of its
methods encounters a problem or failure. The exeception which
causes the ConduitHandlerException is passed with this exception.
- Version:
- $Rev$-$Date: 2001/03/15 16:55:29 $$State: Exp $
- Author:
- File Created By: Brad BARCLAY <bbarclay@ca.ibm.com>, Last Modified By: $Author: Yaztromo $
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ConduitHandlerException
public ConduitHandlerException(DLPFunctionCallException ex)
- Creates a new ConduitHandlerException, specifying the
DLPFunctionCallException which generated this exception.
- Parameters:
ex
- the DLPFunctionCallException which caused this ConduitHandlerException.
ConduitHandlerException
public ConduitHandlerException(java.lang.String s,
DLPFunctionCallException ex)
- Creates a new ConduitHandlerException, specifying the
DLPFunctionCallException which generated this exception, and
a text message detailing the exception.
- Parameters:
s
- a string message to accompiany this exception.ex
- the DLPFunctionCallException which caused this ConduitHandlerException.
getDlpException
public DLPFunctionCallException getDlpException()
- Retrieves the DLPFunctionCallException which caused this exception to be thrown.
- Returns:
- the DLPFunctionCallException which caused this exception to be thrown.