gov.nasa.pds.api.registry.exceptions.MembershipException 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;
public class MembershipException extends Exception {
private static final long serialVersionUID = 4619792009605522154L;
public MembershipException(String lidvid, String membership, String type) {
super("The lidvid '" + lidvid + "' of type " + type + " does not support " + membership
+ " membership");
}
}