1 /*
2 * ========================================================================
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * contributor license agreements. See the NOTICE file distributed with
6 * this work for additional information regarding copyright ownership.
7 * The ASF licenses this file to You under the Apache License, Version 2.0
8 * (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 * ========================================================================
20 */
21 package org.apache.cactus.server;
22
23 import java.io.IOException;
24
25 import javax.servlet.ServletException;
26 import javax.servlet.jsp.PageContext;
27
28 import org.apache.cactus.ServletURL;
29
30 /**
31 * Extends {@link AbstractPageContextWrapper} by adding the new methods
32 * of the Servlet 2.3 API specifications.
33 *
34 * @see AbstractPageContextWrapper
35 * @version $Id: AbstractPageContextWrapper23.java 238993 2004-05-22 16:39:34Z vmassol $
36 */
37 public abstract class AbstractPageContextWrapper23
38 extends AbstractPageContextWrapper
39 {
40 /**
41 * Construct a {@link PageContext} instance that delegates
42 * it's method calls to the page context object passed as parameter and
43 * that uses the URL passed as parameter to simulate a URL from which
44 * the request would come from.
45 *
46 * @param theOriginalPageContext the real page context
47 * @param theURL the URL to simulate or <code>null</code> if none
48 */
49 public AbstractPageContextWrapper23(PageContext theOriginalPageContext,
50 ServletURL theURL)
51 {
52 super(theOriginalPageContext, theURL);
53 }
54
55 // Unmodified overridden methods -----------------------------------------
56
57 /**
58 * {@inheritDoc}
59 * @see PageContext#handlePageException(Throwable)
60 */
61 public void handlePageException(Throwable theThrowable)
62 throws ServletException, IOException
63 {
64 this.originalPageContext.handlePageException(theThrowable);
65 }
66 }