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

com.dell.cpsd.rcm.evaluation.client.RcmEvaluationServiceException Maven / Gradle / Ivy

Go to download

This repository contains the source code for the rcm evaluation service API. Use this repository to share contracts between services so you can create POJOs using defined JSON schemas and to create message transformers for the RCM evaluation service.

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

package com.dell.cpsd.rcm.evaluation.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 *

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy