001 /** 002 * Implements the CFML 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 IsPDFFile implements Function { 011 public static boolean call(PageContext pc , String path) throws FunctionNotSupported { 012 throw new FunctionNotSupported("IsPDFFile"); 013 } 014 }