Package com.apama

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

      Constructors 
      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.util.CompoundException

        getCause, getNestedException, getRootCause, hasNestedException
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • InterruptedEngineException

        public InterruptedEngineException​(java.lang.String msg)
        Create a simple exception with the given message.
        Parameters:
        msg - the message for the new exception.
      • InterruptedEngineException

        public InterruptedEngineException​(java.lang.Throwable t)
        Create a compound exception that references the given exception.
        Parameters:
        t - the exception to be wrapped.
      • InterruptedEngineException

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