I have this snippet of code to deal with catching particular exceptions
private static final String CONNECTION_REFUSED_EXCEPTION = "java.net.ConnectException: Connection refused: connect";
...
} catch (org.apache.axis.AxisFault af) {
if (af.getFaultString().equals(CONNECTION_REFUSED_EXCEPTION))
{
// Do something
}
}
This works fine locally on my windows development environment
However, when I deploy to a unix machine for testing, the fault string differs, as show below (note the : connect missing from the end)
- Windows fault string : java.net.ConnectException: Connection refused: connect
- Unix fault string : java.net.ConnectException: Connection refused
Why is this so?
For the record, I believe the following would be better suited for matching the fault string :
...
if(af.getCause() instanceof java.net.ConnectException)
...