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: import com.completex.objective.components.OdalRuntimeException;
12:
13: /**
14: * @author Gennady Krizhevsky
15: */
16: public class OdalRuntimePersistencyException extends
17: OdalRuntimeException {
18:
19: public OdalRuntimePersistencyException() {
20: }
21:
22: public OdalRuntimePersistencyException(String message) {
23: super (message);
24: }
25:
26: public OdalRuntimePersistencyException(String message,
27: Throwable cause) {
28: super (message, cause);
29: }
30:
31: public OdalRuntimePersistencyException(Throwable cause) {
32: super(cause);
33: }
34:
35: }
|