01: package abbot.finder;
02:
03: /** General exception class which encapsulates all failures generated
04: * attempting to find a component in the currently available GUI.
05: */
06: public class ComponentSearchException extends Exception {
07: public ComponentSearchException() {
08: }
09:
10: public ComponentSearchException(String msg) {
11: super(msg);
12: }
13: }
|