Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public void authenticate(final String userID, final String psswrd) throws Authen
try {
res = requestAuthorization(req);
} catch (RemoteException e) {
throw new AuthenticationException(e.getLocalizedMessage());
throw (AuthenticationException) new AuthenticationException(e.getLocalizedMessage()).initCause(e);
}

switch (res.getResponseCode()) {
Expand Down