com.dell.cpsd.hal.data.provider.client.exceptions.HalDataProviderException Maven / Gradle / Ivy
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.hal.data.provider.client.exceptions;
/**
* 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 HalDataProviderException extends Exception
{
/*
* serial version id
*/
private static final long serialVersionUID = 4119241334523852220L;
/**
* HalDataProviderException constructor.
*
* @since 1.0
*/
public HalDataProviderException()
{
super();
}
/**
* HalDataProviderException constructor.
*
* @param cause
* The cause of the exception.
*
* @since 1.0
*/
public HalDataProviderException(Throwable cause)
{
super(cause);
}
/**
* HalDataProviderException constructor.
*
* @param message
* The exception message.
*
* @since 1.0
*/
public HalDataProviderException(String message)
{
super(message);
}
/**
* HalDataProviderException constructor.
*
* @param message
* The exception message.
* @param cause
* The cause of the exception.
*
* @since 1.0
*/
public HalDataProviderException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy