Class RestMessageComposeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.communication.exception.CommunicationEngineException
-
- com.aquima.interactions.communication.exception.RestMessageComposeException
-
- All Implemented Interfaces:
Serializable
public class RestMessageComposeException extends CommunicationEngineException
This exception is used when a rest message could not be composed.- Since:
- 9.0
- Author:
- a.pragt, m.mahabiersing, Jon van Leuven
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RestMessageComposeException​(String message, Throwable cause)
Constructor with both a message and an exception explaining the cause of the error.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RestMessageComposeException
public RestMessageComposeException​(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.cause
- The original cause of the error, may be null.
-
-