Package railo.runtime.functions.system

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

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

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

public final class DotNetToCFType implements Function {
  public static Object call(PageContext pc , Object input) throws PageException {
    throw new FunctionNotSupported("DotNetToCFType");
  }
}
TOP

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

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.