Improved POP3 auth exception

pull/208/head
M66B 2 years ago
parent 40329e9022
commit d2d6ac8ab6

@ -190,7 +190,7 @@ public class POP3Store extends Store {
try {
port = getPort(null);
} catch (EOFException eex) {
throw new AuthenticationFailedException(eex.getMessage());
throw new AuthenticationFailedException(eex.getMessage(), eex);
} catch (SocketConnectException scex) {
throw new MailConnectException(scex);
} catch (IOException ioex) {

Loading…
Cancel
Save