Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StorageException (0.07 sec)

  1. src/test/java/org/codelibs/fess/exception/StorageExceptionTest.java

            String message = "Storage error";
            StorageException exception = new StorageException(message, null);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_inheritanceFromFessSystemException() {
            // Test that StorageException extends FessSystemException
            StorageException exception = new StorageException("Test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            } catch (final Exception e) {
                throw new StorageException("Failed to update tags for " + objectName, e);
            }
        }
    
        /**
         * Retrieves the tags for a storage object from the MinIO system.
         *
         * @param objectName the name of the object to get tags for
         * @return map of tag key-value pairs
         * @throws StorageException if retrieving tags fails
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
Back to top