blob: 9ec969103861a15f6a5c8200574db7b2bb20b2c1 [file] [log] [blame]
/*
* Created on Feb 16, 2004
*
*/
package groovy.swt;
import org.codehaus.groovy.GroovyException;
/**
* @author <a href="mailto:ckl@dacelo.nl">Christiaan ten Klooster </a>
* @version $Revision$
*/
public class InvalidParentException extends GroovyException {
/**
* @param message
*/
public InvalidParentException(String property) {
super("parent should be: " + property);
}
}