![JAR search and dependency download from the Maven repository](/logo.png)
com.yammer.dropwizard.validation.InvalidEntityException Maven / Gradle / Ivy
package com.yammer.dropwizard.validation;
import com.google.common.collect.ImmutableList;
public class InvalidEntityException extends RuntimeException {
private final ImmutableList errors;
public InvalidEntityException(String message, Iterable errors) {
super(message);
this.errors = ImmutableList.copyOf(errors);
}
public ImmutableList getErrors() {
return errors;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy