From: Sandro Santilli Date: Tue, 5 Oct 2004 22:46:46 +0000 (+0000) Subject: Removed PGSQLException use as suggested by Kris Jurka X-Git-Tag: pgis_1_0_0RC1~334 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bab59eeaa2533acd7d2b4379294412aa87621554;p=postgis Removed PGSQLException use as suggested by Kris Jurka git-svn-id: http://svn.osgeo.org/postgis/trunk@939 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/jdbc/org/postgis/Point.java b/jdbc/org/postgis/Point.java index bb44f6aaf..28b0684de 100644 --- a/jdbc/org/postgis/Point.java +++ b/jdbc/org/postgis/Point.java @@ -69,7 +69,7 @@ public class Point extends Geometry } } catch(NumberFormatException e) { - throw new PSQLException("postgis.Point",e.toString()); + throw new SQLException("postgis.Point: " + e.toString()) } }