public class ConfigurationException extends RuntimeException
ConfigurationException captures information concerning an invalid configuration of Coherence. Specifically it details what the problem was and advice for resolving the issue. Optionally a ConfigurationException may be include the causing Exception.| Constructor and Description |
|---|
ConfigurationException(String sProblem, String sAdvice)
Constructs a
ConfigurationException. |
ConfigurationException(String sProblem, String sAdvice, Throwable cause)
Constructs a
ConfigurationException (with a cause). |
| Modifier and Type | Method and Description |
|---|---|
String |
getAdvice()
Returns advice to resolve the issue.
|
String |
getMessage() |
String |
getProblem()
Returns what the problem was.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic ConfigurationException(String sProblem, String sAdvice)
ConfigurationException.sProblem - the problem that occurredsAdvice - the advice to fix the problempublic ConfigurationException(String sProblem, String sAdvice, Throwable cause)
ConfigurationException (with a cause).sProblem - the problem that occurredsAdvice - the advice to fix the problemcause - the Throwable causing the problempublic String getMessage()
getMessage in class Throwablepublic String getProblem()
public String getAdvice()