Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exception (0.26 sec)

  1. src/main/java/jcifs/smb/SmbTransportImpl.java

        }
    
    
        protected void doSend0 ( Request request ) throws IOException {
            try {
                doSend(request);
            }
            catch ( IOException ioe ) {
                log.warn("send failed", ioe);
                try {
                    disconnect(true);
                }
                catch ( IOException ioe2 ) {
                    ioe.addSuppressed(ioe2);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                         * "Invalid parameter".
                         */
                        try {
                            log.warn("Exception during SSP authentication", se);
                            trans.disconnect(true);
                        }
                        catch ( IOException ioe ) {
                            log.debug("Disconnect failed");
                        }
                        setUid(0);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

        /**
         * This URLConnection method just returns a new <tt>SmbFileInputStream</tt> created with this file.
         *
         * @throws IOException
         *             thrown by <tt>SmbFileInputStream</tt> constructor
         */
        @Override
        public InputStream getInputStream () throws IOException {
            return new SmbFileInputStream(this);
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top