
com.dell.cpsd.rcm.compliance.data.client.ComplianceDataServiceException Maven / Gradle / Ivy
The newest version!
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.rcm.compliance.data.client;
/**
* This is the base exception for the compliance data service client.
*
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*
*
* @version 1.0
* @since 1.0
*/
public class ComplianceDataServiceException extends Exception
{
/*
* serial version id
*/
private static final long serialVersionUID = 4119241334523852220L;
/**
* ComplianceDataServiceException constructor.
*
* @since 1.0
*/
public ComplianceDataServiceException()
{
super();
}
/**
* ComplianceDataServiceException constructor.
*
* @param cause The cause of the exception.
* @since 1.0
*/
public ComplianceDataServiceException(Throwable cause)
{
super(cause);
}
/**
* ComplianceDataServiceException constructor.
*
* @param message The exception message.
* @since 1.0
*/
public ComplianceDataServiceException(String message)
{
super(message);
}
/**
* ComplianceDataServiceException constructor.
*
* @param message The exception message.
* @param cause The cause of the exception.
* @since 1.0
*/
public ComplianceDataServiceException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy