01: package abbot.tester;
02:
03: /** Indicates that a ComponentTester action failed due to the component not
04: * being visible on screen.
05: */
06: publicclass ComponentNotShowingException extendsActionFailedException {
07: public ComponentNotShowingException(String msg) {
08: super(msg);
09: }
10: }