01: /**
02: * Objective Database Abstraction Layer (ODAL)
03: * Copyright (c) 2004, The ODAL Development Group
04: * All rights reserved.
05: * For definition of the ODAL Development Group please refer to LICENCE.txt file
06: *
07: * Distributable under LGPL license.
08: * See terms of license at gnu.org.
09: */package com.completex.objective.components.persistency;
10:
11: /**
12: * @author Gennady Krizhevsky
13: */
14: public class RuntimeValidationException extends
15: OdalRuntimePersistencyException {
16: public RuntimeValidationException() {
17: }
18:
19: public RuntimeValidationException(String message) {
20: super (message);
21: }
22:
23: public RuntimeValidationException(String message, Throwable cause) {
24: super (message, cause);
25: }
26:
27: public RuntimeValidationException(Throwable cause) {
28: super(cause);
29: }
30: }
|