01: package abbot.script; 02: 03: /** Exception to indicate a Component reference does not exist. */ 04: public class NoSuchReferenceException extends RuntimeException { 05: public NoSuchReferenceException() { 06: } 07: 08: public NoSuchReferenceException(String msg) { 09: super(msg); 10: } 11: }