blob: 390f481934f004a5c14ea09a01f8c756c8cdb009 [file] [log] [blame]
package org.owasp.validator.html;
import java.util.List;
public class CleanResults {
public int getNumberOfErrors() {
throw new IllegalStateException();
}
public String getCleanHTML() {
throw new IllegalStateException();
}
public List<String> getErrorMessages() {
throw new IllegalStateException();
}
}