diff options
author | Peter Mount <peter@retep.org.uk> | 1999-05-18 23:17:46 +0000 |
---|---|---|
committer | Peter Mount <peter@retep.org.uk> | 1999-05-18 23:17:46 +0000 |
commit | 4c63b257fd90e28a043197fd2abc07f2166f8eb3 (patch) | |
tree | c7e1108fc1dae813c2df536d5475fc6058293519 /src/interfaces/jdbc/postgresql/util/PGmoney.java | |
parent | c2f0d565f319f7a75f0178758e9270c96d0c807f (diff) |
Internationalisation of error messages
Diffstat (limited to 'src/interfaces/jdbc/postgresql/util/PGmoney.java')
-rw-r--r-- | src/interfaces/jdbc/postgresql/util/PGmoney.java | 2 |
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); } } |