001    package railo.runtime.gateway;
002    
003    import org.opencfml.eventgateway.GatewayException;
004    
005    import railo.runtime.exp.PageException;
006    import railo.runtime.exp.PageExceptionBox;
007    
008    public class PageGatewayException extends GatewayException implements PageExceptionBox {
009            
010            private PageException pe;
011    
012            public PageGatewayException(PageException pe){
013                    super(pe.getMessage());
014                    this.pe=pe;
015                    
016            }
017    
018            public PageException getPageException() {
019                    return pe;
020            }
021            
022    }