class Bunny::AuthenticationFailureError
Raised when RabbitMQ closes TCP connection due to an authentication failure. Relies on RabbitMQ 3.2 Authentication
Failure Notifications extension: www.rabbitmq.com/auth-notification.html
Attributes
API
API
Public Class Methods
Source
# File lib/bunny/exceptions.rb, line 141 def initialize(username, vhost, password_length) @username = username @vhost = vhost super(username, vhost, password_length) end
Calls superclass method
Bunny::PossibleAuthenticationFailureError::new