com.thoughtworks.webstub.stub.config.MissingMatchingConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-stub Show documentation
Show all versions of web-stub Show documentation
Library for stubbing external HTTP dependencies
The newest version!
package com.thoughtworks.webstub.stub.config;
import com.thoughtworks.webstub.stub.matcher.RequestPartMatcher;
public class MissingMatchingConfigurationException extends Exception {
private RequestPartMatcher matcher;
MissingMatchingConfigurationException(RequestPartMatcher matcher) {
this.matcher = matcher;
}
public RequestPartMatcher getFailedMatcher() {
return this.matcher;
}
}