Searched defs:cex (Results 1 - 2 of 2) sorted by relevance

/javamail/mail/src/main/java/com/sun/mail/util/
H A DMailConnectException.java66 * @param cex the SocketConnectException with the details
68 public MailConnectException(SocketConnectException cex) { argument
71 cex.getHost() + ", " + cex.getPort() +
72 "; timeout " + cex.getConnectionTimeout() +
73 (cex.getMessage() != null ? ("; " + cex.getMessage()) : ""));
75 this.host = cex.getHost();
76 this.port = cex.getPort();
77 this.cto = cex
[all...]
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DIMAPFolder.java504 } catch (ConnectionException cex) {
506 throw new FolderClosedException(this, cex.getMessage());
841 } catch (ConnectionException cex) {
842 throw new FolderClosedException(this, cex.getMessage());
885 } catch (ConnectionException cex) {
886 throw new StoreClosedException(store, cex.getMessage());
1031 } catch (CommandFailedException cex) {
1045 throw new MessagingException(cex.getMessage(), cex);
1254 } catch (ConnectionException cex) {
3593 throwClosedException(ConnectionException cex) argument
[all...]

Completed in 13 milliseconds