All Downloads are FREE. Search and download functionalities are using the official Maven repository.

au.com.dius.pact.consumer.PactMismatchException Maven / Gradle / Ivy

package au.com.dius.pact.consumer;

@Deprecated
public class PactMismatchException extends AssertionError {
    private final PactMismatch result;

    public PactMismatchException(PactMismatch result) {
        super(result.toString(), result.userError().isDefined() ? result.userError().get() : null);
        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy