001    /**
002     * Implements the Cold Fusion Function getprofilestring
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    import railo.runtime.type.Struct;
011    
012    public final class GetPrinterInfo implements Function {
013            public static Struct call(PageContext pc , String printer) throws PageException {
014            throw new FunctionNotSupported("GetPrinterInfo");
015            }
016    }