Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ServletRuntimeException (0.07 sec)

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

     */
    public class ServletRuntimeException extends RuntimeException {
    
        /** Serial version UID for serialization compatibility. */
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new ServletRuntimeException wrapping the given ServletException.
         *
         * @param e The ServletException to wrap
         */
        public ServletRuntimeException(final ServletException e) {
            super(e);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java

            String errorMessage = "Test servlet error message";
            ServletException servletException = new ServletException(errorMessage);
    
            // Wrap it in ServletRuntimeException
            ServletRuntimeException runtimeException = new ServletRuntimeException(servletException);
    
            // Verify that the cause is correctly set
            assertNotNull(runtimeException);
            assertEquals(servletException, runtimeException.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.8K bytes
    - Viewed (0)
Back to top