Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for strings (1.19 sec)

  1. src/main/java/jcifs/smb1/dcerpc/DcerpcException.java

        }
        public DcerpcException(String msg) {
            super(msg);
        }
        public DcerpcException(String msg, Throwable rootCause) {
            super(msg);
            this.rootCause = rootCause;
        }
        public int getErrorCode() {
            return error;
        }
        public Throwable getRootCause() {
            return rootCause;
        }
        public String toString() {
            if (rootCause != null) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcException.java

            this.error = error;
        }
    
    
        /**
         * @param msg
         */
        public DcerpcException ( String msg ) {
            super(msg);
        }
    
    
        /**
         * @param msg
         * @param rootCause
         */
        public DcerpcException ( String msg, Throwable rootCause ) {
            super(msg, rootCause);
        }
    
    
        /**
         * 
         * @return the error code
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 2.4K bytes
    - Viewed (0)
Back to top