Class CommunicationEngineException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ContractParseException, DataSerializationException, InfiniteSchemaException, InvalidWebServiceException, RestMessageComposeException, RestMessageParseException, SoapMessageComposeException, SoapMessageParseException, UnknownActionException, UnknownDomainSchemaException, UnknownDynamicComposerException, UnknownElementMappingException, UnknownOperationException, UnknownPropertyException, UnknownRestServiceException, UnknownSchemaException, UnknownSchemaSetException, UnknownSoapServiceContractException, UnknownSoapServiceException, UnknownTypeMappingException, UnknownWebServiceException, UnknownWsdlException, UnknownXmlContractException, UnknownXsdException, UnmatchableOperationException, UnsupportedAcceptMimeTypeException

public abstract class CommunicationEngineException extends AppException
Base class for all exceptions specific to the communication engine component.
Since:
9.0
Author:
Jon van Leuven
See Also:
  • Constructor Details

    • CommunicationEngineException

      public CommunicationEngineException(String message)
      Basic constructor with only a message explaining the cause of the error.
      Parameters:
      message - The message explaining the error that occurred, may not be null or empty.
    • CommunicationEngineException

      public CommunicationEngineException(String message, 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, may not be null or empty.
      cause - The original cause of the error.