class Bunny::PossibleAuthenticationFailureError
Raised when RabbitMQ closes TCP connection before finishing connection sequence properly. This typically indicates an authentication issue.
Attributes
API
API
Public Class Methods
Source
# File lib/bunny/exceptions.rb, line 121 def initialize(username, vhost, password_length) @username = username @vhost = vhost super("Authentication with RabbitMQ failed. Please check your connection settings. Username: #{username}, vhost: #{vhost}, password length: #{password_length}") end
Calls superclass method