001 package railo.runtime.exp; 002 003 /** 004 * Interface for exception class how contain a page exception inside 005 */ 006 public interface PageExceptionBox { 007 008 /** 009 * @return returns the inner page exception 010 */ 011 public PageException getPageException(); 012 }