All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vcloud.api.rest.client.MultipleLinksException Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
/* **********************************************************************
 * 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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy