Chapter 7 - Code Snippets Deploying an Applet: Phase I - Prepare a Sample Applet p. 227 Step 16: Click the Source tab and enter the following line of code at the end of the import section: import oracle.dacf.control.LoginFailureException; Step 17: Place this in the jbInit() method under the call to loginDlg1.setDataItemName: if (loginDlg1.showDialog() == JOptionPane.CANCEL_OPTION) { throw new LoginFailureException(); } -------------------------------------------------------------------