package abbot.tester.swt; /** Indicates that a ComponentTester action failed to execute properly. */ public class ActionFailedException extends RuntimeException { private static final long serialVersionUID = 1L; public static final String copyright = "Licensed Materials -- Property of IBM\n"+ "(c) Copyright International Business Machines Corporation, 2003\nUS Government "+ "Users Restricted Rights - Use, duplication or disclosure restricted by GSA "+ "ADP Schedule Contract with IBM Corp."; public ActionFailedException() { } public ActionFailedException(String msg) { super(msg); } }