001    /**
002     * Implements the CFML Function getexception
003     */
004    package railo.runtime.functions.system;
005    
006    import railo.runtime.PageContext;
007    import railo.runtime.exp.ExpressionException;
008    import railo.runtime.exp.FunctionNotSupported;
009    import railo.runtime.ext.function.Function;
010    
011    public final class GetException implements Function {
012            public static java.lang.Throwable call(PageContext pc , Object object) throws ExpressionException {
013                    throw new FunctionNotSupported("getexception");
014            }
015    }