package NET.worlds.console; public class WebControlFactory { public static WebControlImp createWebControlImp(int hwnd, boolean hasToolbar, boolean isBanner) throws NoWebControlException { try { return new IEWebControlImp(hwnd, hasToolbar, isBanner); } catch (Exception var4) { System.out.println("WebControlImp blew chow: " + var4.toString()); throw new NoWebControlException(); } } }