blob: d0c6e6d9ffcfcb70ed8a2adf53cc685f4dac58cf [file] [log] [blame]
/*
* Created on Jun 15, 2004
*
*/
package groovy.swt;
import org.codehaus.groovy.GroovyException;
/**
* @author <a href:ckl at dacelo.nl">Christiaan ten Klooster </a>
* $Id$
*/
public class UnKnownStyleException extends GroovyException {
/**
* @param message
*/
public UnKnownStyleException(String style) {
super("Unknow SWT style: " + style);
}
}