Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getExceptions (1.04 sec)

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

    
        /**
         * 
         */
        public void reset ();
    
    
        /**
         * 
         * @return an exception linked to an error
         */
        public Exception getException ();
    
    
        /**
         * @param e
         */
        public void exception ( Exception e );
    
    
        /**
         * @return chained response
         */
        Response getNextResponse ();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

             */
            public NetbiosAddress[] getAnswer () {
                return this.ans;
            }
    
    
            /**
             * @return the uhe
             */
            public UnknownHostException getException () {
                return this.uhe;
            }
    
        }
    
    
        NetbiosAddress[] lookupServerOrWorkgroup ( String name, InetAddress svr ) throws UnknownHostException {
            Sem sem = new Sem(2);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

                        }
    
                    });
                }
                catch ( PrivilegedActionException e ) {
                    if ( e.getException() instanceof SmbException ) {
                        throw (SmbException) e.getException();
                    }
                    throw new SmbException("Unexpected exception during context initialization", e);
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

            this.asyncHandled = asyncHandled;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#getException()
         */
        @Override
        public Exception getException () {
            return this.exception;
        }
    
    
        /**
         * 
         * @return error status code
         */
        @Override
        public final int getErrorCode () {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        public boolean isVerifyFailed () {
            return this.verifyFailed;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#getException()
         */
        @Override
        public Exception getException () {
            return this.exception;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#isError()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/transport/Transport.java

                            }
    
                            if ( curResp.isError() ) {
                                throw new TransportException(this.name + " error reading response to " + curReq, curResp.getException());
                            }
                            if ( isDisconnected() && this.state != 5 ) {
                                throw new TransportException(
                                    String.format(
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

                        this.credits.release(grantedCredits);
                    }
                }
            }
    
            if ( !response.isReceived() ) {
                throw new IOException("No response", response.getException());
            }
            return response;
    
        }
    
        private <T extends CommonServerMessageBlockResponse> T setupResponses(CommonServerMessageBlockRequest request, T response) throws IOException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
Back to top