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

com.dell.cpsd.common.rabbitmq.retrypolicy.exception.ErrorResponseException 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.retrypolicy.exception;

/**
 * Indicates that AMQP message should be sent as a response to error.
 * Retry policy is calculated using root cause.
 * 

*

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

*/ public class ErrorResponseException extends ResponseMessageException { private static final long serialVersionUID = 4050522508860642811L; public ErrorResponseException(Throwable cause, String exchange, String routingKey, Object body) { super(cause, exchange, routingKey, body); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy