Class ConfigurationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.gigaspaces.config.ConfigurationException
All Implemented Interfaces:
Serializable

public class ConfigurationException extends Exception
Thrown if a problem occurs when obtaining configuration information. If the problem results from an exception being thrown while processing the configuration information, that original exception can be accessed by calling getCause. Note that any instance of Error thrown while processing the configuration information is propagated to the caller; it is not wrapped in a ConfigurationException.
Since:
5.2
Author:
Igor Goldenberg
See Also:
  • Constructor Details

    • ConfigurationException

      public ConfigurationException(String msg)
    • ConfigurationException

      public ConfigurationException(String msg, Exception ex)
  • Method Details

    • toString

      public String toString()
      Returns a short description of this exception. The result includes the name of the actual class of this object; the result of calling the getMessage method for this object, if the result is not null; and the result of calling toString on the causing exception, if that exception is not null.
      Overrides:
      toString in class Throwable