Index: src/interfaces/jdbc/org/postgresql/util/PSQLException.java =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/interfaces/jdbc/org/postgresql/util/PSQLException.java,v retrieving revision 1.11 diff -c -r1.11 PSQLException.java *** src/interfaces/jdbc/org/postgresql/util/PSQLException.java 14 Mar 2003 01:21:47 -0000 1.11 --- src/interfaces/jdbc/org/postgresql/util/PSQLException.java 20 Jul 2003 04:29:16 -0000 *************** *** 127,138 **** { return message; } - - /* - * Overides Object - */ - public String toString() - { - return message != null ? message : ""; - } } --- 127,130 ---- Index: src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java,v retrieving revision 1.22 diff -c -r1.22 QueryExecutor.java *** src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java 29 May 2003 03:21:32 -0000 1.22 --- src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java 20 Jul 2003 04:29:16 -0000 *************** *** 192,198 **** // did we get an error during this query? if ( errorMessage != null ) ! throw new SQLException( errorMessage.toString() ); //if an existing result set was passed in reuse it, else --- 192,198 ---- // did we get an error during this query? if ( errorMessage != null ) ! throw new SQLException( errorMessage.toString().trim() ); //if an existing result set was passed in reuse it, else *************** *** 283,289 **** // did we get an error during this query? if ( errorMessage != null ) ! throw new SQLException( errorMessage.toString() ); //if an existing result set was passed in reuse it, else --- 283,289 ---- // did we get an error during this query? if ( errorMessage != null ) ! throw new SQLException( errorMessage.toString().trim() ); //if an existing result set was passed in reuse it, else