Skip to content

Commit b3e0036

Browse files
author
Emile Joubert
committed
Support Java 1.5
1 parent cffafcc commit b3e0036

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/com/rabbitmq/client/PossibleAuthenticationFailureException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// The contents of this file are subject to the Mozilla Public License
22
// Version 1.1 (the "License"); you may not use this file except in
3-
// compliance with the License. You may obtain a copy of the License
3+
// compliance with the License. You may obtain IOa copy of the License
44
// at http://www.mozilla.org/MPL/
55
//
66
// Software distributed under the License is distributed on an "AS IS"
@@ -25,7 +25,7 @@ public class PossibleAuthenticationFailureException extends IOException
2525
{
2626
public PossibleAuthenticationFailureException(Throwable cause)
2727
{
28-
super("Possibly caused by authentication failure",
29-
cause);
28+
super("Possibly caused by authentication failure");
29+
super.initCause(cause);
3030
}
3131
}

0 commit comments

Comments
 (0)