Package railo.runtime.functions.system

Source Code of railo.runtime.functions.system.GetException

/**
* Implements the CFML Function getexception
*/
package railo.runtime.functions.system;

import railo.runtime.PageContext;
import railo.runtime.exp.ExpressionException;
import railo.runtime.exp.FunctionNotSupported;
import railo.runtime.ext.function.Function;

public final class GetException implements Function {
  public static java.lang.Throwable call(PageContext pc , Object object) throws ExpressionException {
    throw new FunctionNotSupported("getexception");
  }
}
TOP

Related Classes of railo.runtime.functions.system.GetException

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.