| java.lang.Object java.lang.Throwable java.lang.Exception com.anthonyeden.lib.ChainedException com.anthonyeden.lib.config.ConfigurationException
ConfigurationException | public class ConfigurationException extends ChainedException (Code) | | Exception thrown when there is an error while reading, writing or
manipulating Configurations.
author: Anthony Eden |
Method Summary | |
public String | getMessage() Overrides the Throwable.getMessage() method and adds additional
configuration location information if it is available. |
ConfigurationException | public ConfigurationException(String message)(Code) | | Construct a ConfigurationException with the given message.
Parameters: message - The message |
ConfigurationException | public ConfigurationException(Throwable t)(Code) | | Construct a ConfigurationException with the given message.
Parameters: t - The Throwable |
ConfigurationException | public ConfigurationException(String message, Throwable t)(Code) | | Construct a ConfigurationException with the given message.
Parameters: message - The message |
ConfigurationException | public ConfigurationException(String message, Configuration configuration)(Code) | | Construct a ConfigurationException with the given message.
Parameters: message - The message Parameters: configuration - The Configuration object |
ConfigurationException | public ConfigurationException(Throwable t, Configuration configuration)(Code) | | Construct a ConfigurationException with the given nested
error. The message of the nested error will be used as this
exception's message.
Parameters: t - The nested error Parameters: configuration - The Configuration object |
ConfigurationException | public ConfigurationException(String message, Throwable t, Configuration configuration)(Code) | | Construct a ConfigurationException with the given message
and nested error.
Parameters: message - The message Parameters: t - The nested error Parameters: configuration - The Configuration |
getMessage | public String getMessage()(Code) | | Overrides the Throwable.getMessage() method and adds additional
configuration location information if it is available.
The message |
|
|