Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for PluginException (0.07 seconds)

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

    /**
     * Exception for plugin-related errors.
     */
    public class PluginException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Creates a plugin exception with message and cause.
         *
         * @param message the error message
         * @param cause the cause
         */
        public PluginException(final String message, final Throwable cause) {
            super(message, cause);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java

            PluginException exception = new PluginException(message, cause);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
        }
    
        @Test
        public void test_constructor_withNullMessage() {
            // Test constructor with null message
            PluginException exception = new PluginException(null);
    
    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)
Back to Top