diff options
author | Peter Mount | 1999-05-18 23:17:46 +0000 |
---|---|---|
committer | Peter Mount | 1999-05-18 23:17:46 +0000 |
commit | 4c63b257fd90e28a043197fd2abc07f2166f8eb3 (patch) | |
tree | c7e1108fc1dae813c2df536d5475fc6058293519 /src/interfaces/jdbc/postgresql/fastpath/Fastpath.java | |
parent | c2f0d565f319f7a75f0178758e9270c96d0c807f (diff) |
Internationalisation of error messages
Diffstat (limited to 'src/interfaces/jdbc/postgresql/fastpath/Fastpath.java')
-rw-r--r-- | src/interfaces/jdbc/postgresql/fastpath/Fastpath.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/jdbc/postgresql/fastpath/Fastpath.java b/src/interfaces/jdbc/postgresql/fastpath/Fastpath.java index 232f8f02485..a49dfadc309 100644 --- a/src/interfaces/jdbc/postgresql/fastpath/Fastpath.java +++ b/src/interfaces/jdbc/postgresql/fastpath/Fastpath.java @@ -93,7 +93,7 @@ public class Fastpath stream.flush(); } catch(IOException ioe) { - throw new SQLException("Failed to send fastpath call "+fnid+"\n"+ioe); + throw new PSQLException("postgresql.fp.send",new Integer(fnid),ioe); } // Now handle the result @@ -138,7 +138,7 @@ public class Fastpath //------------------------------ // Error message returned case 'E': - throw new SQLException("Fastpath: "+stream.ReceiveString(4096)); + throw new PSQLException("postgresql.fp.error",stream.ReceiveString(4096)); //------------------------------ // Notice from backend @@ -156,7 +156,7 @@ public class Fastpath return result; default: - throw new SQLException("Fastpath: protocol error. Got '"+((char)in)+"'"); + throw new PSQLException("postgresql.fp.protocol",new Character((char)in)); } } } @@ -199,7 +199,7 @@ public class Fastpath { Integer i = (Integer)fastpath(name,true,args); if(i==null) - throw new SQLException("Fastpath:"+name+": no result returned, expected integer"); + throw new PSQLException("postgresql.fp.expint",name); return i.intValue(); } @@ -292,7 +292,7 @@ public class Fastpath // so, until we know we can do this (needs testing, on the TODO list) // for now, we throw the exception and do no lookups. if(id==null) - throw new SQLException("Fastpath: function "+name+" is unknown"); + throw new PSQLException("postgresql.fp.unknown",name); return id.intValue(); } |