- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for ConnectionTimeoutException (0.14 sec)
-
src/main/java/jcifs/util/transport/ConnectionTimeoutException.java
/** * @author mbechler * */ public class ConnectionTimeoutException extends TransportException { /** * */ private static final long serialVersionUID = 7327198103204592731L; /** * */ public ConnectionTimeoutException () {} /** * @param msg */ public ConnectionTimeoutException ( String msg ) { super(msg); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/TimeoutTest.java
/** * @param threadsBefore * @param start * @param ctx * @param f * @throws ConnectionTimeoutException * @throws SmbException */ void runConnectTimeoutTest ( Set<Thread> threadsBefore, long start, CIFSContext ctx, SmbResource f ) throws ConnectionTimeoutException, CIFSException { try { f.createNewFile(); assertTrue("Did not see error", false);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
switch ( st ) { case 1: /* doConnect never returned */ this.state = 6; cleanupThread(timeout); throw new ConnectionTimeoutException("Connection timeout"); case 2: if ( this.te != null ) { /* doConnect throw Exception */ this.state = 4; /* error */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 01 18:12:21 UTC 2020 - 24.1K bytes - Viewed (0)