1 package org.onap.so.client.graphinventory.exceptions;
3 import org.onap.so.client.graphinventory.entities.uri.GraphInventoryPluralResourceUri;
5 public class GraphInventoryMultipleItemsException extends RuntimeException {
7 private static final long serialVersionUID = -1596266941681036917L;
9 public GraphInventoryMultipleItemsException(int size, GraphInventoryPluralResourceUri uri) {
10 super(String.format("Found %s objects at %s when we only expected to find one.", size, uri.build()));