org.webjars.MultipleMatchesException Maven / Gradle / Ivy
package org.webjars;
import java.util.List;
/**
* Thrown when a path matches multiple assets.
*/
public class MultipleMatchesException extends IllegalArgumentException {
private final List matches;
public MultipleMatchesException(final String message, List matches) {
super(message);
this.matches = matches;
}
public List getMatches() {
return matches;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy