org.jSyncManager.API.Conduit

Class 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.

Constructor Summary

ConduitHandlerException(String s, DLPFunctionCallException ex)
Creates a new ConduitHandlerException, specifying the DLPFunctionCallException which generated this exception, and a text message detailing the exception.
ConduitHandlerException(DLPFunctionCallException ex)
Creates a new ConduitHandlerException, specifying the DLPFunctionCallException which generated this exception.

Method Summary

DLPFunctionCallException
getDlpException()
Retrieves the DLPFunctionCallException which caused this exception to be thrown.

Constructor Details

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.
Parameters:
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.
Parameters:
ex - the DLPFunctionCallException which caused this ConduitHandlerException.

Method Details

getDlpException

public DLPFunctionCallException getDlpException()
Retrieves the DLPFunctionCallException which caused this exception to be thrown.
Returns:
the DLPFunctionCallException which caused this exception to be thrown.