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