Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GsaConfigException (0.6 sec)

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

         */
        public GsaConfigException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new GSA configuration exception with the specified detail message.
         *
         * @param message the detail message describing the configuration error
         */
        public GsaConfigException(final String message) {
            super(message);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java

            String message = "";
            GsaConfigException exception = new GsaConfigException(message);
    
            assertNotNull(exception);
            assertEquals("", exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_instanceOfFessSystemException() {
            // Test that GsaConfigException is an instance of FessSystemException
            GsaConfigException exception = new GsaConfigException("Test");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top