Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for ThumbnailGenerationException (0.15 seconds)

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

            // Test constructor with null message
            ThumbnailGenerationException exception = new ThumbnailGenerationException(null);
    
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructorWithNullMessageAndCause() {
            // Test constructor with null message and null cause
            ThumbnailGenerationException exception = new ThumbnailGenerationException(null, null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                        if (logger.isDebugEnabled()) {
                            throw new ThumbnailGenerationException("Failed to process a thumbnail content: " + url, e);
                        }
                        throw new ThumbnailGenerationException(e.getMessage());
                    } catch (final Exception e) {
                        throw new ThumbnailGenerationException("Failed to process a thumbnail content: " + url, e);
                    }
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 13.4K bytes
    - Click Count (0)
Back to Top