001    package railo.runtime.exp;
002    
003    import javax.servlet.jsp.JspException;
004    
005    import railo.runtime.dump.Dumpable;
006    
007    /**
008     * root Exception for railo runtime 
009     */
010    public abstract class PageException extends JspException implements IPageException,Dumpable {
011        
012        /**
013         * constructor of the class
014         * @param message error message
015         */
016        public PageException(String message) {
017            super(message);
018        }
019    
020    }