org.xins.common.service
Class ConnectionRefusedCallException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.xins.common.service.CallException
              extended byorg.xins.common.service.GenericCallException
                  extended byorg.xins.common.service.ConnectionCallException
                      extended byorg.xins.common.service.ConnectionRefusedCallException
All Implemented Interfaces:
Serializable

public final class ConnectionRefusedCallException
extends ConnectionCallException

Exception that indicates that a connection to a service could not be established since it was refused.

Since:
XINS 1.0.0
Version:
$Revision: 1.14 $ $Date: 2006/08/28 09:12:34 $
Author:
Ernst de Haan
See Also:
Serialized Form

Constructor Summary
ConnectionRefusedCallException(CallRequest request, TargetDescriptor target, long duration)
          Constructs a new ConnectionRefusedCallException.
 
Methods inherited from class org.xins.common.service.CallException
getDetail, getDuration, getMessage, getNext, getRequest, getTarget
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConnectionRefusedCallException

public ConnectionRefusedCallException(CallRequest request,
                                      TargetDescriptor target,
                                      long duration)
                               throws IllegalArgumentException
Constructs a new ConnectionRefusedCallException.

Parameters:
request - the original request, cannot be null.
target - descriptor for the target that was attempted to be called, cannot be null.
duration - the call duration in milliseconds, must be >= 0.
Throws:
IllegalArgumentException - if request == null || target == null || duration < 0.


See http://www.xins.org/.