01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2008.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.sail.rdbms.exceptions;
07:
08: import java.sql.SQLException;
09:
10: import org.openrdf.sail.SailException;
11:
12: /**
13: * SailExcetion from an RDBMS store.
14: *
15: * @author James Leigh
16: *
17: */
18: public class RdbmsException extends SailException {
19: private static final long serialVersionUID = -4004800841908629772L;
20:
21: public RdbmsException(SQLException e) {
22: super (e);
23: }
24:
25: public RdbmsException(String msg) {
26: super (msg);
27: }
28:
29: public RdbmsException(String msg, Exception e) {
30: super (msg, e);
31: }
32:
33: public RdbmsException(Exception e) {
34: }
35:
36: }
|