org.jSyncManager.API.Conduit
Class ConduitHandlerException
Exceptionorg.jSyncManager.API.Conduit.ConduitHandlerException
public class ConduitHandlerException
extends 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.
ConduitHandlerException
public ConduitHandlerException(String s,
DLPFunctionCallException ex)Creates a new ConduitHandlerException, specifying the
DLPFunctionCallException which generated this exception, and
a text message detailing the exception.
s - a string message to accompiany this exception.ex - the DLPFunctionCallException which caused this ConduitHandlerException.
ConduitHandlerException
public ConduitHandlerException(DLPFunctionCallException ex)
Creates a new ConduitHandlerException, specifying the
DLPFunctionCallException which generated this exception.
ex - the DLPFunctionCallException which caused this ConduitHandlerException.
getDlpException
public DLPFunctionCallException getDlpException()
Retrieves the DLPFunctionCallException which caused this exception to be thrown.
- the DLPFunctionCallException which caused this exception to be thrown.