com.vmware.vcloud.api.rest.client.MultipleLinksException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vcd-api-client-java Show documentation
Show all versions of vcd-api-client-java Show documentation
REST API Client for vCloud Director
/* **********************************************************************
* api-extension-template-vcloud-director
* Copyright 2018 VMware, Inc.
* SPDX-License-Identifier: BSD-2-Clause
* *********************************************************************/
package com.vmware.vcloud.api.rest.client;
import com.vmware.vcloud.api.rest.links.LinkRelation;
/**
* An exception to indicate that a resource being queried for a single <link> element of
* a particular rel and media type in fact has multiple matching such elements.
*/
public class MultipleLinksException extends LinkException {
private static final long serialVersionUID = 1L;
public MultipleLinksException(String href, LinkRelation rel, String mediaType) {
super(href, rel, mediaType);
}
}