001 /** 002 * Implements the Cold Fusion Function isdate 003 */ 004 package railo.runtime.functions.decision; 005 006 import railo.runtime.PageContext; 007 import railo.runtime.exp.FunctionNotSupported; 008 import railo.runtime.ext.function.Function; 009 010 public final class IsDDX implements Function { 011 public static boolean call(PageContext pc , String strOrPath) throws FunctionNotSupported { 012 throw new FunctionNotSupported("IsDDX"); 013 } 014 }