Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for StorageException (0.58 sec)

  1. src/main/java/org/codelibs/fess/exception/StorageException.java

     */
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new storage exception with the specified detail message and cause.
         *
         * @param message The detail message.
         * @param cause   The cause of the exception.
         */
        public StorageException(final String message, final Throwable cause) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

    import org.codelibs.fess.app.web.api.ApiResult;
    import org.codelibs.fess.app.web.api.admin.FessApiAdminAction;
    import org.codelibs.fess.exception.ResultOffsetExceededException;
    import org.codelibs.fess.exception.StorageException;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    import org.lastaflute.web.response.StreamResponse;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top