| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.tigris.scarab.util.ScarabRuntimeException
ScarabRuntimeException | public class ScarabRuntimeException extends RuntimeException (Code) | | This class extends TurbineException and does not change its
functionality. It should be used to mark Scarab specific
exceptions.
In order to ensure localization of Exception messages,
ScarabRuntimeException adds a new type of message, the L10NMessage.
author: John D. McNally version: $Id: ScarabRuntimeException.java 9977 2005-12-09 00:40:59Z hair $ |
Constructor Summary | |
public | ScarabRuntimeException(LocalizationKey theKey) Constructs a new ScarabRuntimeException with specified
resource and no parameters. | public | ScarabRuntimeException(LocalizationKey theKey, Throwable aNested) Constructs a new ScarabRuntimeException with specified
resource and a nested Throwable. | public | ScarabRuntimeException(Localizable theL10nInstance) Constructs a new ScarabRuntimeException with specified
Localizable . | public | ScarabRuntimeException(Localizable theL10nInstance, Throwable aNested) Constructs a new ScarabRuntimeException with specified
Localizable and a nested Throwable. | public | ScarabRuntimeException(LocalizationKey theKey, Object[] theParams) Constructs a new ScarabRuntimeException with specified
resource and a list of parameters. | public | ScarabRuntimeException(LocalizationKey theKey, Object p1) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource and one parameter. | public | ScarabRuntimeException(LocalizationKey theKey, Object p1, Object p2) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource and two parameters. | public | ScarabRuntimeException(LocalizationKey theKey, Object p1, Object p2, Object p3) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource and three parameters. | public | ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object[] theParams) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and an aritrary set of parameters. | public | ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object p1) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and one parameter. | public | ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object p1, Object p2) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and two parameters. | public | ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object p1, Object p2, Object p3) convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and three parameters. |
nested | Throwable nested(Code) | | Placeholder for a nested exception (may be null)
|
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey)(Code) | | Constructs a new ScarabRuntimeException with specified
resource and no parameters.
Parameters: theKey - the l10n error key. |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Throwable aNested)(Code) | | Constructs a new ScarabRuntimeException with specified
resource and a nested Throwable.
Parameters: theKey - the l10n error key. Parameters: aNested - |
ScarabRuntimeException | public ScarabRuntimeException(Localizable theL10nInstance)(Code) | | Constructs a new ScarabRuntimeException with specified
Localizable .
Parameters: theL10nInstance - the l10n error key. |
ScarabRuntimeException | public ScarabRuntimeException(Localizable theL10nInstance, Throwable aNested)(Code) | | Constructs a new ScarabRuntimeException with specified
Localizable and a nested Throwable.
Parameters: theL10nInstance - the l10n error key. Parameters: aNested - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Object[] theParams)(Code) | | Constructs a new ScarabRuntimeException with specified
resource and a list of parameters.
Parameters: theL10nInstance - the l10n error key. Parameters: theParams - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Object p1)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource and one parameter.
Parameters: theL10nInstance - the l10n error key. Parameters: p1 - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Object p1, Object p2)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource and two parameters.
Parameters: theL10nInstance - the l10n error key. Parameters: p1 - Parameters: p2 - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Object p1, Object p2, Object p3)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource and three parameters.
Parameters: theL10nInstance - the l10n error key. Parameters: p1 - Parameters: p2 - Parameters: p3 - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object[] theParams)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and an aritrary set of parameters.
Parameters: theKey - Parameters: nested - Parameters: theParams - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object p1)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and one parameter.
Parameters: theKey - Parameters: nested - Parameters: p1 - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object p1, Object p2)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and two parameters.
Parameters: theKey - Parameters: nested - Parameters: p1 - Parameters: p2 - |
ScarabRuntimeException | public ScarabRuntimeException(LocalizationKey theKey, Throwable nested, Object p1, Object p2, Object p3)(Code) | | convenience constructor: Constructs a new ScarabRuntimeException
with specified resource, nested Throwable and three parameters.
Parameters: theKey - Parameters: nested - Parameters: p1 - Parameters: p2 - Parameters: p3 - |
getL10nMessage | public Localizable getL10nMessage()(Code) | | return the L10NInstance, or null, if no L10N key was given.
|
|
|