![JAR search and dependency download from the Maven repository](/logo.png)
com.dell.cpsd.hdp.capability.registry.client.CapabilityRegistryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hdp-capability-registry-client Show documentation
Show all versions of hdp-capability-registry-client Show documentation
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.
/**
* 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