| org.tigris.scarab.util.ScarabException org.tigris.scarab.util.ValidationException
ValidationException | public class ValidationException extends ScarabException (Code) | | This class extends ScarabException and does not change its
functionality. It is thrown when an attempt to modify the database
would result in a bad state.
author: John D. McNally version: $Id: ValidationException.java 9104 2004-05-10 21:04:51Z dabbous $ |
Constructor Summary | |
public | ValidationException(LocalizationKey l10nKey) Constructs a new ValidationException with specified
detail message. | public | ValidationException(L10NMessage l10nMessage) Constructs a new ValidationException with specified
detail message. | public | ValidationException(L10NMessage l10nMessage, Throwable nested) Constructs a new ValidationException with specified
detail message. | public | ValidationException(LocalizationKey theKey, Object[] theParams) Constructs a new ValidationException with specified
resource and a list of parameters. | public | ValidationException(LocalizationKey theKey, Object p1) convenience constructor: Constructs a new ScarabException
with specified resource and one parameter. | public | ValidationException(LocalizationKey theKey, Object p1, Object p2) convenience constructor: Constructs a new ScarabException
with specified resource and two parameters. | public | ValidationException(LocalizationKey theKey, Object p1, Object p2, Object p3) convenience constructor: Constructs a new ScarabException
with specified resource and three parameters. | public | ValidationException(LocalizationKey theKey, Throwable nested, Object[] theParams) convenience constructor: Constructs a new ScarabException
with specified resource, nested Throwable and an aritrary set of parameters. |
ValidationException | public ValidationException(LocalizationKey l10nKey)(Code) | | Constructs a new ValidationException with specified
detail message.
Parameters: msg - the error message. |
ValidationException | public ValidationException(L10NMessage l10nMessage)(Code) | | Constructs a new ValidationException with specified
detail message.
Parameters: msg - the error message. |
ValidationException | public ValidationException(L10NMessage l10nMessage, Throwable nested)(Code) | | Constructs a new ValidationException with specified
detail message.
Parameters: msg - the error message. |
ValidationException | public ValidationException(LocalizationKey theKey, Object[] theParams)(Code) | | Constructs a new ValidationException with specified
resource and a list of parameters.
Parameters: theKey - the l10n error key. |
ValidationException | public ValidationException(LocalizationKey theKey, Object p1)(Code) | | convenience constructor: Constructs a new ScarabException
with specified resource and one parameter.
Parameters: theKey - the l10n error key. |
ValidationException | public ValidationException(LocalizationKey theKey, Object p1, Object p2)(Code) | | convenience constructor: Constructs a new ScarabException
with specified resource and two parameters.
Parameters: theKey - the l10n error key. |
ValidationException | public ValidationException(LocalizationKey theKey, Object p1, Object p2, Object p3)(Code) | | convenience constructor: Constructs a new ScarabException
with specified resource and three parameters.
Parameters: theKey - the l10n error key. |
ValidationException | public ValidationException(LocalizationKey theKey, Throwable nested, Object[] theParams)(Code) | | convenience constructor: Constructs a new ScarabException
with specified resource, nested Throwable and an aritrary set of parameters.
Parameters: theKey - the l10n error key. |
|
|