01: /*
02: * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/db/TKSQLError.java,v 1.10 2000/07/05 15:36:26 alex Exp $
03: *
04: */
05: package com.teamkonzept.db;
06:
07: import java.sql.*;
08:
09: public class TKSQLError extends Error {
10: private SQLException sqlException;
11:
12: /**
13: Sollte nicht mehr benutzt werden, da er keine semantische Einordnung
14: erlaubt
15: @deprecated
16: */
17: public TKSQLError(String s) {
18: super (s);
19: }
20:
21: public TKSQLError(String message, SQLException e) {
22: super (message);
23: sqlException = e;
24: }
25:
26: public TKSQLError(SQLException e) {
27: super (e.getMessage());
28: sqlException = e;
29: }
30:
31: public SQLException getSQLException() {
32: return sqlException;
33: }
34: }
|