1 20 package org.apache.cactus.server; 21 22 import java.io.IOException ; 23 24 import javax.servlet.ServletException ; 25 import javax.servlet.jsp.PageContext ; 26 27 import org.apache.cactus.ServletURL; 28 29 36 public abstract class AbstractPageContextWrapper23 37 extends AbstractPageContextWrapper 38 { 39 48 public AbstractPageContextWrapper23(PageContext theOriginalPageContext, 49 ServletURL theURL) 50 { 51 super(theOriginalPageContext, theURL); 52 } 53 54 56 59 public void handlePageException(Throwable theThrowable) 60 throws ServletException , IOException 61 { 62 this.originalPageContext.handlePageException(theThrowable); 63 } 64 } 65 | Popular Tags |