Class IntegrationExecutionException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    OutboundRequestExecutionException

    public class IntegrationExecutionException
    extends java.lang.RuntimeException
    This exception is thrown when the TimeoutService encounters an exception other than the TimeoutException. It is a wrapper around the actual cause. Use Throwable.getCause() to get the actual cause of this exception.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      IntegrationExecutionException​(java.lang.String msg, java.lang.Throwable cause)
      Instantiates an IntegrationExecutionException with a message
      IntegrationExecutionException​(java.lang.Throwable cause)
      Instantiates an IntegrationExecutionException
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • IntegrationExecutionException

        public IntegrationExecutionException​(java.lang.Throwable cause)
        Instantiates an IntegrationExecutionException
        Parameters:
        cause - The cause of the execution exception
      • IntegrationExecutionException

        public IntegrationExecutionException​(java.lang.String msg,
                                             java.lang.Throwable cause)
        Instantiates an IntegrationExecutionException with a message
        Parameters:
        msg - The error message
        cause - The cause of the execution exception