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

io.quarkiverse.rabbitmqclient.RabbitMQClientException Maven / Gradle / Ivy

package io.quarkiverse.rabbitmqclient;

/**
 * Generic exception used when things go wrong.
 *
 * @author b.passon
 */
public class RabbitMQClientException extends RuntimeException {

    /**
     * Constructs a new RabbitMQ client exception with the specified detail message and
     * cause.
     * 

* Note that the detail message associated with * {@code cause} is not automatically incorporated in * this runtime exception's detail message. * * @param message the detail message (which is saved for later retrieval * by the {@link #getMessage()} method). * @param cause the cause (which is saved for later retrieval by the * {@link #getCause()} method). (A {@code null} value is * permitted, and indicates that the cause is nonexistent or * unknown.) */ public RabbitMQClientException(String message, Throwable cause) { super(message, cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy