01: package abbot.finder;
02:
03: /** Indicates no component could be found, where one was required. */
04: public class ComponentNotFoundException extends
05: ComponentSearchException {
06: public ComponentNotFoundException() {
07: }
08:
09: public ComponentNotFoundException(String msg) {
10: super(msg);
11: }
12: }
|