summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/postgresql/util/PGmoney.java
diff options
context:
space:
mode:
authorPeter Mount <peter@retep.org.uk>1999-05-18 23:17:46 +0000
committerPeter Mount <peter@retep.org.uk>1999-05-18 23:17:46 +0000
commit4c63b257fd90e28a043197fd2abc07f2166f8eb3 (patch)
treec7e1108fc1dae813c2df536d5475fc6058293519 /src/interfaces/jdbc/postgresql/util/PGmoney.java
parentc2f0d565f319f7a75f0178758e9270c96d0c807f (diff)
Internationalisation of error messages
Diffstat (limited to 'src/interfaces/jdbc/postgresql/util/PGmoney.java')
-rw-r--r--src/interfaces/jdbc/postgresql/util/PGmoney.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/postgresql/util/PGmoney.java b/src/interfaces/jdbc/postgresql/util/PGmoney.java
index c2dcb3fad77..0d094dbf108 100644
--- a/src/interfaces/jdbc/postgresql/util/PGmoney.java
+++ b/src/interfaces/jdbc/postgresql/util/PGmoney.java
@@ -65,7 +65,7 @@ public class PGmoney extends PGobject implements Serializable,Cloneable
val = negative ? -val : val;
} catch(NumberFormatException e) {
- throw new SQLException("conversion of money failed - "+e.toString());
+ throw new PSQLException("postgresql.money",e);
}
}