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

com.dell.cpsd.hdp.capability.registry.client.CapabilityRegistryException Maven / Gradle / Ivy

Go to download

This repository contains the source code for the capability registry API. This API exposes the interface through which a consumer or provider interacts with the capability registry.

There is a newer version: 1.1.0
Show newest version
/**
 * Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
 * Dell EMC Confidential/Proprietary Information
 */

package com.dell.cpsd.hdp.capability.registry.client;

/**
 * This is the base exception for the service client.
 * 

* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved. * Dell EMC Confidential/Proprietary Information *

* * @since 1.0 */ public class CapabilityRegistryException extends Exception { /* * serial version id */ private static final long serialVersionUID = 4119241334523852220L; /** * CapabilityRegistryException constructor. * * @since 1.0 */ public CapabilityRegistryException() { super(); } /** * CapabilityRegistryException constructor. * * @param cause * The cause of the exception. * * @since 1.0 */ public CapabilityRegistryException(Throwable cause) { super(cause); } /** * CapabilityRegistryException constructor. * * @param message * The exception message. * * @since 1.0 */ public CapabilityRegistryException(String message) { super(message); } /** * CapabilityRegistryException constructor. * * @param message * The exception message. * @param cause * The cause of the exception. * * @since 1.0 */ public CapabilityRegistryException(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy