Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getCategory (0.11 seconds)

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

         */
        public boolean isNetworkError() {
            return errorCode.getCategory() == ErrorCategory.NETWORK;
        }
    
        /**
         * Check if this is an authentication error
         *
         * @return true if authentication error
         */
        public boolean isAuthenticationError() {
            return errorCode.getCategory() == ErrorCategory.AUTHENTICATION;
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  2. src/main/java/jcifs/SmbException.java

         */
        public Severity getSeverity() {
            return severity;
        }
    
        /**
         * Gets the error category
         *
         * @return the category
         */
        public Category getCategory() {
            return category;
        }
    
        /**
         * Gets the error context
         *
         * @return the context map
         */
        public Map<String, Object> getContext() {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 6.4K bytes
    - Click Count (0)
Back to Top