001    package railo.runtime.functions.other;
002    
003    
004    import railo.runtime.PageContext;
005    import railo.runtime.exp.FunctionNotSupported;
006    import railo.runtime.ext.function.Function;
007    
008    public final class VerifyClient implements Function {
009        
010        public static String call(PageContext pc) throws FunctionNotSupported {
011            throw new FunctionNotSupported("VerifyClient");
012        }
013        
014    
015    }