Class MessageProcessingException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    MessageException, TimeoutException

    public class MessageProcessingException
    extends java.lang.Exception
    Exception thrown when internal error occurred during processing of an message, this could be of bad configuration or library dependencies missing.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      MessageProcessingException​(java.lang.String message)
      Exception thrown when internal error occurred during processing of an message, this could be of bad configuration or library dependencies missing.
      MessageProcessingException​(java.lang.String message, java.lang.Throwable cause)
      Exception thrown when internal error occurred during processing of an message, this could be of configuration or library dependencies missing.
    • 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

      • MessageProcessingException

        public MessageProcessingException​(java.lang.String message,
                                          java.lang.Throwable cause)
        Exception thrown when internal error occurred during processing of an message, this could be of configuration or library dependencies missing.
        Parameters:
        message - a descriptive message about the cause of the exception.
        cause - the cause of the exception.
      • MessageProcessingException

        public MessageProcessingException​(java.lang.String message)
        Exception thrown when internal error occurred during processing of an message, this could be of bad configuration or library dependencies missing.
        Parameters:
        message - a descriptive message about the cause of the exception.