Eliminate the user of an IOException method signature that was first introduced
in Java 6.
| | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | throw new IOException(e.getMessage(), e); |
| | | throw new IOException(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | throw new IOException(e.getMessage(), e); |
| | | throw new IOException(e.getMessage()); |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | catch (Exception e) |
| | | { |
| | | throw new IOException(e.getMessage(), e); |
| | | throw new IOException(e.getMessage()); |
| | | } |
| | | |
| | | switch (message.getProtocolOpType()) |
| | |
| | | catch (Exception e) |
| | | { |
| | | // This should never happen. |
| | | throw new IOException(e.getMessage(), e); |
| | | throw new IOException(e.getMessage()); |
| | | } |
| | | } |
| | | |