gov.nasa.pds.api.registry.exceptions.UnknownGroupNameException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of registry-api-service Show documentation
Show all versions of registry-api-service Show documentation
Registry API Service contributing to the PDS Federated Search API
package gov.nasa.pds.api.registry.exceptions;
import java.util.Set;
public class UnknownGroupNameException extends Exception {
private static final long serialVersionUID = -5630215762959235121L;
public UnknownGroupNameException(String group, Set known) {
super("Unknown group '" + group + "'. All known groups: " + String.join(", ", known));
}
}