Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ServletException (3.53 sec)

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

            ServletException servletException = new ServletException();
    
            // 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)
  2. src/main/java/org/codelibs/fess/exception/ServletRuntimeException.java

     */
    package org.codelibs.fess.exception;
    
    import jakarta.servlet.ServletException;
    
    /**
     * Runtime exception wrapper for ServletException.
     *
     * This exception is used to wrap checked ServletExceptions and convert them
     * into unchecked RuntimeExceptions, allowing them to be thrown from methods
     * that don't declare ServletException in their throws clause.
     */
    public class ServletRuntimeException extends RuntimeException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/filter/CorsFilter.java

    import org.codelibs.fess.cors.CorsHandlerFactory;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.servlet.Filter;
    import jakarta.servlet.FilterChain;
    import jakarta.servlet.ServletException;
    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/WebApiFilter.java

        }
    
        /**
         * Initializes the web API filter.
         *
         * @param filterConfig The filter configuration
         * @throws ServletException If initialization fails
         */
        @Override
        public void init(final FilterConfig filterConfig) throws ServletException {
            // nothing
        }
    
        /**
         * Destroys the web API filter and cleans up resources.
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/WebApiManager.java

         * @param chain The filter chain.
         * @throws IOException If an input/output error occurs.
         * @throws ServletException If a servlet error occurs.
         */
        void process(HttpServletRequest request, HttpServletResponse response, FilterChain chain) throws IOException, ServletException;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

         *
         * @param config the filter configuration containing initialization parameters
         * @throws ServletException if an error occurs during initialization
         */
        @Override
        public void init(final FilterConfig config) throws ServletException {
            servletContext = config.getServletContext();
    
            encoding = config.getInitParameter(LastaPrepareFilter.ENCODING_KEY);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
Back to top