Package com.apama
Class InterruptedEngineException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- com.apama.util.CompoundException
- 
- com.apama.EngineException
- 
- com.apama.InterruptedEngineException
 
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class InterruptedEngineException extends EngineException An InterruptedEngineException is thrown by various methods of classes in the Engine Client SDK if the thread calling is interrupted. The operation may or may not occur and may or may not have completed. It does not mean that there is a problem with the connection to the engine. - See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description InterruptedEngineException(java.lang.String msg)Create a simple exception with the given message.InterruptedEngineException(java.lang.String msg, java.lang.Throwable wrappedException)Create a compound exception with the given message and that references the given exception.InterruptedEngineException(java.lang.Throwable t)Create a compound exception that references the given exception.
 - 
Method Summary- 
Methods inherited from class com.apama.EngineExceptiongetWarnings, getWrappedException
 - 
Methods inherited from class com.apama.util.CompoundExceptiongetCause, getNestedException, getRootCause, hasNestedException
 
- 
 
- 
- 
- 
Constructor Detail- 
InterruptedEngineExceptionpublic InterruptedEngineException(java.lang.String msg) Create a simple exception with the given message.- Parameters:
- msg- the message for the new exception.
 
 - 
InterruptedEngineExceptionpublic InterruptedEngineException(java.lang.Throwable t) Create a compound exception that references the given exception.- Parameters:
- t- the exception to be wrapped.
 
 - 
InterruptedEngineExceptionpublic InterruptedEngineException(java.lang.String msg, java.lang.Throwable wrappedException)Create a compound exception with the given message and that references the given exception.- Parameters:
- msg- the message for the new exception.
- wrappedException- the exception to be wrapped.
 
 
- 
 
-