We are upgrading Oracle Weblogic server 8.1 to Weblogic Server 12c and java 1.4 to 1.8
I have the task to secure that app functionality stays intact. Some apps aren't touched since 2007.
There's the previous code:
if (e.getCause() instanceof java.net.ConnectException
|| e.getCause() instanceof weblogic.utils.net.SocketResetException
|| e.getCause() instanceof weblogic.rjvm.PeerGoneException
|| e.getCause() instanceof javax.ejb.EJBException) {...}
searching for the "weblogic.jar" (found it at "\Oracle\Middleware\Oracle_Home\wlserver\server\lib" I see that it has no classes. And looking in "wlclient.jar" I see it has a bunch of classes but not those from above.
Do you know how this exceptions are caught on WLS 12c? Is there a new type/class?