System.load Exceptions cannot be caught

2003-07-21 Thread Peter Kwan
I have the following code in my static class initialization code for loading native code: static { try { System.load("some_path_A"); } catch (Exception e) { System.load("some_path_B"); } .. The class is used in a JSP project. If I put my n

RE: System.load Exceptions cannot be caught

2003-07-21 Thread Mike Curwen
cause' for the JasperException ? > -Original Message- > From: Peter Kwan [mailto:[EMAIL PROTECTED] > Sent: Monday, July 21, 2003 12:06 PM > To: [EMAIL PROTECTED] > Subject: System.load Exceptions cannot be caught > > > I have the following code in my static class in

Re: System.load Exceptions cannot be caught

2003-07-21 Thread Peter Kwan
Kwan - Original Message - From: "Mike Curwen" <[EMAIL PROTECTED]> To: "'Tomcat Users List'" <[EMAIL PROTECTED]> Sent: Tuesday, July 22, 2003 1:06 AM Subject: RE: System.load Exceptions cannot be caught > Did you mean UnsatisiedLinkError ? Be