Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RequestTimeoutException (0.86 sec)

  1. src/main/java/jcifs/util/transport/RequestTimeoutException.java

     *
     * @author mbechler
     */
    public class RequestTimeoutException extends TransportException {
    
        /**
         *
         */
        private static final long serialVersionUID = -8825922797594232534L;
    
        /**
         * Constructs a new RequestTimeoutException with no detail message.
         */
        public RequestTimeoutException() {
        }
    
        /**
         * Constructs a new RequestTimeoutException with the specified detail message and cause.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/util/transport/RequestTimeoutExceptionTest.java

        }
    
        @Test
        void testIsInstanceOfTransportException() {
            // Verify that RequestTimeoutException is a subclass of TransportException
            RequestTimeoutException exception = new RequestTimeoutException();
            assertTrue(exception instanceof TransportException, "RequestTimeoutException should be an instance of TransportException");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                                if (log.isDebugEnabled()) {
                                    log.debug("State is " + this.state);
                                }
                                throw new RequestTimeoutException(this.name + " timedout waiting for response to " + curReq);
                            }
                            continue;
                        }
    
                        curResp.wait();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 27.8K bytes
    - Viewed (0)
Back to top