summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/org/postgresql/util/PSQLException.java
diff options
context:
space:
mode:
authorBarry Lind <barry@xythos.com>2003-08-11 21:18:47 +0000
committerBarry Lind <barry@xythos.com>2003-08-11 21:18:47 +0000
commit1ca4e700deaf8ce9a1b4c07c97bec4f58c4611b1 (patch)
tree00a38376bd43618bc634cae11f67bb66ed6b7df7 /src/interfaces/jdbc/org/postgresql/util/PSQLException.java
parentd7c609f7c4de9cdab1d2bd92964273d4cb34067f (diff)
downloadpostgresql-1ca4e700deaf8ce9a1b4c07c97bec4f58c4611b1.tar.gz
Applied patch by Oliver Jowett to clean up some exception handling
Modified Files: jdbc/org/postgresql/core/QueryExecutor.java jdbc/org/postgresql/util/PSQLException.java
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/util/PSQLException.java')
-rw-r--r--src/interfaces/jdbc/org/postgresql/util/PSQLException.java10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/util/PSQLException.java b/src/interfaces/jdbc/org/postgresql/util/PSQLException.java
index f043fded08..84ccc60ca2 100644
--- a/src/interfaces/jdbc/org/postgresql/util/PSQLException.java
+++ b/src/interfaces/jdbc/org/postgresql/util/PSQLException.java
@@ -7,7 +7,7 @@
* Copyright (c) 2003, PostgreSQL Global Development Group
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/util/Attic/PSQLException.java,v 1.11 2003/03/14 01:21:47 barry Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/util/Attic/PSQLException.java,v 1.12 2003/08/11 21:18:47 barry Exp $
*
*-------------------------------------------------------------------------
*/
@@ -127,12 +127,4 @@ public class PSQLException extends SQLException
{
return message;
}
-
- /*
- * Overides Object
- */
- public String toString()
- {
- return message != null ? message : "";
- }
}