Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ConnectionTimeoutException (0.42 sec)

  1. 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);
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  2. 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);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.4K bytes
    - Viewed (0)
  3. 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 */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
Back to top