Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for rootCause (0.31 sec)

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

            super(msg);
        }
    
    
        /**
         * 
         * @param rootCause
         */
        public TransportException ( Throwable rootCause ) {
            super(rootCause);
        }
    
    
        /**
         * 
         * @param msg
         * @param rootCause
         */
        public TransportException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    
        /**
         * 
         * @return root cause
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMBeanAttributeProvider.java

            } catch (MBeanException e) {
                rootCause = e;
            } catch (AttributeNotFoundException e) {
                rootCause = e;
            }
            throw new UnsupportedOperationException("(" + mbean + ")." + attribute + " is unsupported on this JVM.", rootCause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 21:48:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/ConnectionTimeoutException.java

            super(msg);
        }
    
    
        /**
         * @param rootCause
         */
        public ConnectionTimeoutException ( Throwable rootCause ) {
            super(rootCause);
        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
        public ConnectionTimeoutException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/transport/TransportException.java

        private Throwable rootCause;
    
        public TransportException() {
        }
        public TransportException( String msg ) {
            super( msg );
        }
        public TransportException( Throwable rootCause ) {
            this.rootCause = rootCause;
        }
        public TransportException( String msg, Throwable rootCause ) {
            super( msg );
            this.rootCause = rootCause;
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 958 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbException.java

            return errcode + "";
        }
    
    
        private int status;
        private Throwable rootCause;
    
        SmbException() {
        }
        SmbException( int errcode, Throwable rootCause ) {
            super( getMessageByCode( errcode ));
            status = getStatusByCode( errcode );
            this.rootCause = rootCause;
        }
        SmbException( String msg ) {
            super( msg );
            status = NT_STATUS_UNSUCCESSFUL;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/ResolveExceptionAnalyzer.java

            Throwable rootCause = Throwables.getRootCause(throwable);
            return isTimeoutException(rootCause) || isUnrecoverable5xxStatusCode(rootCause);
        }
    
        /**
         * See <a href="http://hc.apache.org/httpclient-3.x/exception-handling.html">HTTPClient exception handling</a> for more information.
         */
        private static boolean isTimeoutException(Throwable rootCause) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r72/JavaVersionCrossVersionTest.groovy

                connection.newBuild().forTasks('myTask').run()
            }
    
            then:
            GradleConnectionException e = thrown()
            def rootCause = Exceptions.getRootCause(e)
            rootCause instanceof RuntimeException
            rootCause.message == "Boom"
            rootCause.stackTrace.find {
                it.fileName.endsWith("build.gradle") && it.lineNumber == 4
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbException.java

    
        /**
         * 
         */
        public SmbException () {}
    
    
        /**
         * 
         * @param errcode
         * @param rootCause
         */
        public SmbException ( int errcode, Throwable rootCause ) {
            super(getMessageByCode(errcode), rootCause);
            this.status = getStatusByCode(errcode);
        }
    
    
        /**
         * 
         * @param msg
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 07:16:55 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/transport/RequestTimeoutException.java

        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
        public RequestTimeoutException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    
        /**
         * @param msg
         */
        public RequestTimeoutException ( String msg ) {
            super(msg);
        }
    
    
        /**
         * @param rootCause
         */
        public RequestTimeoutException ( Throwable rootCause ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/DcerpcException.java

        }
    
        private int error;
        private Throwable rootCause;
    
        DcerpcException(int error) {
            super(getMessageByDcerpcError(error));
            this.error = error;
        }
        public DcerpcException(String msg) {
            super(msg);
        }
        public DcerpcException(String msg, Throwable rootCause) {
            super(msg);
            this.rootCause = rootCause;
        }
        public int getErrorCode() {
            return error;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.4K bytes
    - Viewed (0)
Back to top