au.com.dius.pact.provider.junitsupport.loader.NoPactsFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of provider Show documentation
Show all versions of provider Show documentation
Pact-JVM - Provider test support library
package au.com.dius.pact.provider.junitsupport.loader;
public class NoPactsFoundException extends RuntimeException {
public NoPactsFoundException() {
}
public NoPactsFoundException(String message) {
super(message);
}
public NoPactsFoundException(String message, Throwable cause) {
super(message, cause);
}
public NoPactsFoundException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy