001 /** 002 * Implements the Cold Fusion Function directoryexists 003 */ 004 package railo.runtime.functions.system; 005 006 import railo.runtime.PageContext; 007 import railo.runtime.exp.FunctionNotSupported; 008 import railo.runtime.exp.PageException; 009 import railo.runtime.ext.function.Function; 010 011 public final class DotNetToCFType implements Function { 012 public static Object call(PageContext pc , Object input) throws PageException { 013 throw new FunctionNotSupported("DotNetToCFType"); 014 } 015 }