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

com.dell.cpsd.common.rabbitmq.exceptions.RabbitMQConnectionException Maven / Gradle / Ivy

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


package com.dell.cpsd.common.rabbitmq.exceptions;

/**
 * This class represents an error creating the connection with RabbitMQ service.
 * 

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy