| From: | Peter Mount <petermount(at)it(dot)maidstone(dot)gov(dot)uk> |
|---|---|
| To: | "'Chris Bitmead'" <chris(at)tech(dot)com(dot)au>, pgsql-hackers(at)hub(dot)org |
| Subject: | RE: [HACKERS] CVS, Java etc |
| Date: | 1999-07-06 13:41:30 |
| Message-ID: | 1B3D5E532D18D311861A00600865478CA051@exchange1.nt.maidstone.gov.uk |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-hackers |
There were a couple of typos that somehow crept in. I fixed them in cvs
just after 6.5 was released.
[snip]
javac postgresql/Driver.java
postgresql/Driver.java:107: Identifier expected.
} catch(PSQLException(ex1) {
^
This should read:
} catch(PSQLException ex1) {
postgresql/Driver.java:111: 'catch' without 'try'.
} catch(Exception ex2) {
^
You need to add another catch before that line:
} catch(PSQLException pex) {
throw pex;
} catch(Exception ex2) {
CVS has got these fixes in there, so as soon as you get it working
again, it should be ok.
Peter
--
Peter Mount
Enterprise Support
Maidstone Borough Council
Any views stated are my own, and not those of Maidstone Borough Council.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Vadim Mikheev | 1999-07-06 13:54:25 | Re: [HACKERS] Fwd: Joins and links |
| Previous Message | Clark Evans | 1999-07-06 13:31:05 | Re: [HACKERS] Fwd: Joins and links |