com.adobe.connectpro.telephony.adaptor
Class SynchronousException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.adobe.connectpro.telephony.adaptor.SynchronousException
All Implemented Interfaces:
java.io.Serializable

public class SynchronousException
extends java.lang.RuntimeException

Exception thrown by Connect Pro when an adaptor tries to execute an adaptor callback method from inside the call that Connect Pro made to the adaptor. The callback methods are for asynchronous conference session updates and should be invoked in a separate thread. This is derived from RuntimeException, so adaptor need not catch it in all the code blocks. To prevent this exception from occurring, do not have adaptor execute callback methods from inside the call made from Connect Pro.

See Also:
Serialized Form

Constructor Summary
SynchronousException()
          Default constructor.
SynchronousException(java.lang.String message)
          Refer to the javadocs for the Exception superclass.
SynchronousException(java.lang.String message, java.lang.Throwable cause)
          Refer to the javadocs for the Exception superclass.
SynchronousException(java.lang.Throwable cause)
          Refer to the javadocs for the Exception superclass.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SynchronousException

public SynchronousException()
Default constructor.


SynchronousException

public SynchronousException(java.lang.String message,
                            java.lang.Throwable cause)
Refer to the javadocs for the Exception superclass.


SynchronousException

public SynchronousException(java.lang.String message)
Refer to the javadocs for the Exception superclass.


SynchronousException

public SynchronousException(java.lang.Throwable cause)
Refer to the javadocs for the Exception superclass.