Skip to content

Commit 57e983a

Browse files
author
Matthias Radestock
committed
make test work under java 1.5
1 parent a1fe60f commit 57e983a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/src/com/rabbitmq/client/test/Bug19356Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ public void openConnection()
5555
try {
5656
connectionFactory.useSslProtocol();
5757
} catch (NoSuchAlgorithmException ex) {
58-
throw new IOException(ex);
58+
throw new IOException(ex.toString());
5959
} catch (KeyManagementException ex) {
60-
throw new IOException(ex);
60+
throw new IOException(ex.toString());
6161
}
6262

6363

0 commit comments

Comments
 (0)