01: package org.swingml.event; 02: 03: public class InvalidTargetLocationException extends RuntimeException { 04: 05: public InvalidTargetLocationException(String targetName) { 06: 07: super ("Unable to find URL for target: " + targetName); 08: 09: } 10: 11: }