examplecalculator.ExampleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GradleProject.Calculate Show documentation
Show all versions of GradleProject.Calculate Show documentation
Project to ease pain of test automation
The newest version!
package examplecalculator;
public final class ExampleException extends RuntimeException {
public ExampleException(String message) {
super(message);
}
}