Class ConfigurationException

All Implemented Interfaces:
Serializable

public class ConfigurationException extends RuntimeException
A 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.
Since:
Coherence 12.1.2
Author:
bo 2011.06.15
See Also:
  • Constructor Details

    • ConfigurationException

      public ConfigurationException(String sProblem, String sAdvice)
      Parameters:
      sProblem - the problem that occurred
      sAdvice - the advice to fix the problem
    • ConfigurationException

      public ConfigurationException(String sProblem, String sAdvice, Throwable cause)
      Constructs a ConfigurationException (with a cause).
      Parameters:
      sProblem - the problem that occurred
      sAdvice - the advice to fix the problem
      cause - the Throwable causing the problem
  • Method Details

    • getMessage

      public String getMessage()
      Overrides:
      getMessage in class Throwable
    • getProblem

      public String getProblem()
      Returns what the problem was.
      Returns:
      A string detailing the problem
    • getAdvice

      public String getAdvice()
      Returns advice to resolve the issue.
      Returns:
      A string detailing advice to resolve the issue