Package de.aristaflow.ilm.util
Class PlainTextException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.ilm.util.IlmException
-
- de.aristaflow.ilm.util.PlainTextException
-
- All Implemented Interfaces:
de.aristaflow.adept2.model.communication.webservice.StackSuppressingException
,Serializable
public class PlainTextException extends IlmException
This exception is used for exceptional responses containing content oftext type
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description String
excpMessage
The exception message stemming from the body of an exception response.-
Fields inherited from class de.aristaflow.ilm.util.IlmException
causeClass, message, serverLogId, subClass, suppressStack
-
-
Constructor Summary
Constructors Constructor Description PlainTextException(String message, String excpMessage)
Creates a new exception for an exceptional response containing plain text.
-
Method Summary
-
Methods inherited from class de.aristaflow.ilm.util.IlmException
getCause, getIlmStackTrace, getLocalizedMessage, getLogId, getMessage, getStackTrace, setLogId, setStackTrace, setSuppressStack
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Field Detail
-
excpMessage
public final String excpMessage
The exception message stemming from the body of an exception response.
-
-
Constructor Detail
-
PlainTextException
public PlainTextException(String message, String excpMessage)
Creates a new exception for an exceptional response containing plain text.- Parameters:
message
- An exception message describing the exceptional response.excpMessage
- The plain text retrieved from the exceptional response.
-
-