hr.fer.junit.grading.GradingMatrixException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-grading Show documentation
Show all versions of junit-grading Show documentation
Testing library to run with grading student examination.
The newest version!
package hr.fer.junit.grading;
public class GradingMatrixException extends RuntimeException {
public GradingMatrixException() {
}
public GradingMatrixException(String message, Throwable cause) {
super(message, cause);
}
public GradingMatrixException(String message) {
super(message);
}
public GradingMatrixException(Throwable cause) {
super(cause);
}
}