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

com.thoughtworks.webstub.stub.config.MissingMatchingConfigurationException Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy