Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 96 for throwable (0.13 seconds)

  1. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

            try {
                Throwable t = cae;
                if (t instanceof final MultipleCrawlingAccessException mcae) {
                    final Throwable[] causes = mcae.getCauses();
                    if (causes.length > 0) {
                        t = causes[causes.length - 1];
                    }
                }
    
                String errorName;
                final Throwable cause = t.getCause();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/exception/DataStoreException.java

         *
         * @param message the error message
         * @param cause the underlying cause of this exception
         */
        public DataStoreException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a new DataStoreException with the specified message.
         *
         * @param message the error message
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

         */
        public JobProcessingException(final Throwable e) {
            super(e);
        }
    
        /**
         * Constructs a new JobProcessingException with the specified detail message and cause.
         *
         * @param message the detail message explaining the exception
         * @param e the cause of the exception
         */
        public JobProcessingException(final String message, final Throwable e) {
            super(message, e);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

        }
    
        @Test
        public void test_constructor_withComponentNameAndCause() {
            // Test constructor with component name and cause
            String componentName = "myComponent";
            Throwable cause = new RuntimeException("Connection failed");
            ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName, cause);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

        }
    
        @Test
        public void test_multiLevelExceptionChain() {
            // Test multi-level exception chain
            Throwable level3 = new NullPointerException("Null value");
            Throwable level2 = new IllegalStateException("Invalid state", level3);
            Throwable level1 = new RuntimeException("Runtime error", level2);
            PluginException exception = new PluginException("Plugin failure", level1);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java

            assertTrue(exception.getCause().getStackTrace().length > 0);
        }
    
        @Test
        public void test_multiLevelCause() {
            // Test with nested exceptions
            Throwable rootCause = new IllegalStateException("Root problem");
            Throwable intermediateCause = new RuntimeException("Intermediate problem", rootCause);
            GsaConfigException exception = new GsaConfigException("Top level GSA error", intermediateCause);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocGenerationException.java

    import gradlebuild.docs.DocGenerationException;
    
    public class ClassDocGenerationException extends DocGenerationException {
        public ClassDocGenerationException(String message, Throwable throwable) {
            super(message, throwable);
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 899 bytes
    - Click Count (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/DocGenerationException.java

    public class DocGenerationException extends RuntimeException {
        public DocGenerationException(String message) {
            super(message);
        }
    
        public DocGenerationException(String message, Throwable throwable) {
            super(message, throwable);
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 968 bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            assertEquals(message, exception.getMessage());
            Throwable cause1 = exception.getCause();
            assertTrue(cause1 instanceof RuntimeException);
    
            Throwable cause2 = cause1.getCause();
            assertTrue(cause2 instanceof AssertionError);
    
            Throwable cause3 = cause2.getCause();
            assertTrue(cause3 instanceof IllegalStateException);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

        }
    
        @Test
        public void test_nestedExceptionChain() {
            // Test nested exception chain
            Throwable rootCause = new IllegalArgumentException("Root cause");
            Throwable middleCause = new IllegalStateException("Middle cause", rootCause);
            ScheduledJobException exception = new ScheduledJobException("Top level error", middleCause);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.9K bytes
    - Click Count (0)
Back to Top