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

com.rabbitmq.client.PossibleAuthenticationFailureException Maven / Gradle / Ivy

Go to download

The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.

There is a newer version: 5.22.0
Show newest version
package com.rabbitmq.client;

import java.io.IOException;

/**
 * Thrown when the likely cause is an authentication failure.
 */
public class PossibleAuthenticationFailureException extends IOException
{
    public PossibleAuthenticationFailureException(Throwable cause)
    {
        super("Possibly caused by authentication failure",
              cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy