1: package abbot.tester; 2: 3: /** Indicates that a ComponentTester action failed to execute properly. */ 4: public class ActionFailedException extends RuntimeException { 5: public ActionFailedException(String msg) { 6: super(msg); 7: } 8: }