All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cz.vutbr.web.css.CSSException Maven / Gradle / Ivy

package cz.vutbr.web.css;

/**
 * CSSException
 * 
 * @author kapy
 * @author Jan Svercl, VUT Brno, 2008
 */
public final class CSSException extends Exception {

    /**
	 * Serial
	 */
	private static final long serialVersionUID = 1L;

	public CSSException(String message) {
    	super(message);
    }
    
    public CSSException(String message, Throwable cause) {
    	super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy