blob: 418233722f028e935579adb30649759ed96ddf7b [file] [log] [blame]
package uk.org.taverna.scufl2.validation;
public interface ValidationReport {
/**
* @return Whether any problems were detected during the validation.
*/
boolean detectedProblems();
/**
* @return An exception to throw to report the problems, or <tt>null</tt> if
* there are no problems to report.
*/
ValidationException getException();
}