01: package abbot.tester; 02: 03: /** Indicates that a component required by a ComponentTester action was not 04: * found. 05: */ 06: public class ComponentMissingException extends ActionFailedException { 07: public ComponentMissingException(String msg) { 08: super(msg); 09: } 10: }