public class ConfigException
extends java.lang.Exception
| Constructor and Description |
|---|
ConfigException(java.lang.String filename)
Construct an exception with just a filename, no message or underlying cause.
|
ConfigException(java.lang.String filename,
int linenumber)
Construct an exception with a filename and a line number.
|
ConfigException(java.lang.String filename,
int linenumber,
java.lang.String msg)
Construct an exception with a filename, line number and error message.
|
ConfigException(java.lang.String filename,
int lineNumber,
java.lang.String msg,
java.lang.Throwable cause)
Construct an exception with a filename, error message and underlying cause.
|
ConfigException(java.lang.String filename,
int linenumber,
java.lang.Throwable cause)
Construct an exception with a filename, line number and underlying cause.
|
ConfigException(java.lang.String filename,
java.lang.String msg)
Construct an exception with a filename and error message.
|
ConfigException(java.lang.String filename,
java.lang.String msg,
java.lang.Throwable cause)
Construct an exception with a filename, error message and underlying cause.
|
ConfigException(java.lang.String filename,
java.lang.Throwable cause)
Construct an exception with a filename and an underlying cause.
|
public ConfigException(java.lang.String filename)
filename - The name of the config file that caused the problem.public ConfigException(java.lang.String filename,
java.lang.String msg)
filename - The name of the config file that caused the problem.msg - A message describing the problem.public ConfigException(java.lang.String filename,
java.lang.Throwable cause)
filename - The name of the config file that caused the problem.cause - The underlying cause of this exception.public ConfigException(java.lang.String filename,
int linenumber)
filename - The name of the config file that caused the problem.linenumber - The line number where the problem occurred.public ConfigException(java.lang.String filename,
int linenumber,
java.lang.String msg)
filename - The name of the config file that caused the problem.linenumber - The line number where the problem occurred.msg - A message describing the problem.public ConfigException(java.lang.String filename,
int linenumber,
java.lang.Throwable cause)
filename - The name of the config file that caused the problem.linenumber - The line number where the problem occurred.cause - The underlying cause of this exception.public ConfigException(java.lang.String filename,
java.lang.String msg,
java.lang.Throwable cause)
filename - The name of the config file that caused the problem.msg - A message describing the problem.cause - The underlying cause of this exception.public ConfigException(java.lang.String filename,
int lineNumber,
java.lang.String msg,
java.lang.Throwable cause)
filename - The name of the config file that caused the problem.lineNumber - The line number where the problem occurred.msg - A message describing the problem.cause - The underlying cause of this exception.