public class CoreException
extends java.lang.Exception
Constructor and Description |
---|
CoreException(CoreException ex)
Copy constructor.
|
CoreException(java.lang.String key)
Construct a CoreException with no parameters.
|
CoreException(java.lang.String key,
java.lang.Object[] params)
Construct a CoreException.
|
CoreException(java.lang.String moduleName,
java.lang.String key)
Construct a CoreException with no parameters.
|
CoreException(java.lang.String moduleName,
java.lang.String key,
java.lang.Object[] params)
Construct a CoreException
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMessage()
Get the message associated with the exception.
|
public CoreException(java.lang.String moduleName, java.lang.String key, java.lang.Object[] params)
moduleName
- the name of the message table.key
- key to retrieve message
found in the message table (may be null).params
- vector of parameters to substitute into the message
string, may be null.public CoreException(java.lang.String moduleName, java.lang.String key)
moduleName
- the name of the message table.key
- key to retrieve message
found in the message table (may be null).public CoreException(java.lang.String key, java.lang.Object[] params)
key
- key to retrieve message
found in the message table (may be null).params
- vector of parameters to substitute into the message
string, may be null.public CoreException(java.lang.String key)
key
- key to retrieve message
found in the message table (may be null).public CoreException(CoreException ex)