Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for componentName (0.04 sec)

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

            // Test constructor with component name only
            String componentName = "testComponent";
            ContainerNotAvailableException exception = new ContainerNotAvailableException(componentName);
    
            assertEquals(componentName + " is not available.", exception.getMessage());
            assertNull(exception.getCause());
            // Note: This test reveals that componentName field is not set in this constructor
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

            }
    
            @Override
            public String fromComponentNameToSuffix(String componentName) {
                return fromClassNameToSuffix(componentName);
            }
    
            @Override
            public Class<?> fromComponentNameToClass(String componentName) {
                try {
                    return Class.forName(componentName);
                } catch (ClassNotFoundException e) {
                    return null;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

         * @param cause The cause of the exception.
         */
        public ContainerNotAvailableException(final String componentName, final Throwable cause) {
            super(componentName + " is not available.", cause);
            this.componentName = componentName;
        }
    
        /**
         * Constructor with cause only.
         * @param cause The cause of the exception.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top