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: /**
11: * Thrown when no exception is declared.
12: *
13: * @author James Leigh
14: *
15: */
16: public class RdbmsRuntimeException extends RuntimeException {
17: private static final long serialVersionUID = 9001754124114839089L;
18:
19: public RdbmsRuntimeException(SQLException e) {
20: super (e);
21: }
22:
23: public RdbmsRuntimeException(String msg) {
24: super (msg);
25: }
26:
27: public RdbmsRuntimeException(RdbmsException e) {
28: super (e);
29: }
30:
31: public RdbmsRuntimeException(InterruptedException e) {
32: super(e);
33: }
34:
35: }
|