Class SoapMessageParseException

All Implemented Interfaces:
Serializable

public class SoapMessageParseException extends CommunicationEngineException
This exception is used when a soap message could not be parsed.
Since:
9.0
Author:
Jon van Leuven
See Also:
  • Constructor Details

    • SoapMessageParseException

      public SoapMessageParseException(String message, ISoapMessage soapMessage)
      Constructs the exception with the error message and the invalid soap message.
      Parameters:
      message - The error message.
      soapMessage - The soap message that could not be parsed, may not be null.
    • SoapMessageParseException

      public SoapMessageParseException(String message, ISoapMessage soapMessage, Throwable cause)
      Constructor with both a message and an exception explaining the cause of the error.
      Parameters:
      message - The message explaining the error that occurred.
      soapMessage - The soap message that could not be parsed, may not be null.
      cause - The original cause of the error.
  • Method Details

    • getSoapMessage

      public ISoapMessage getSoapMessage()
      This method returns the soap message that could not be parsed.
      Returns:
      The soap message, never null.