fr.vergne.pester.model.DefinitionUnfulfilledException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pester-core Show documentation
Show all versions of pester-core Show documentation
Implementation of the Pester library.
The newest version!
package fr.vergne.pester.model;
@SuppressWarnings("serial")
public class DefinitionUnfulfilledException extends RuntimeException {
public DefinitionUnfulfilledException(String message) {
super(message);
}
public DefinitionUnfulfilledException(String message, Throwable cause) {
super(message, cause);
}
}