![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vcloud.api.rest.client.MissingLinkException 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 <link> element of
* a particular rel and media type in fact has no such link.
*/
public class MissingLinkException extends LinkException {
private static final long serialVersionUID = 1L;
public MissingLinkException(String href, LinkRelation rel, String mediaType) {
super(href, rel, mediaType);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy