10 lines
288 B
Java
10 lines
288 B
Java
package org.w3c.css.sac;
|
|
|
|
public interface ErrorHandler {
|
|
void error(CSSParseException cSSParseException) throws CSSException;
|
|
|
|
void fatalError(CSSParseException cSSParseException) throws CSSException;
|
|
|
|
void warning(CSSParseException cSSParseException) throws CSSException;
|
|
}
|