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

username[R]

API

vhost[R]

API

Public Class Methods

new(username, vhost, password_length) click to toggle source
# File lib/bunny/exceptions.rb, line 133
def initialize(username, vhost, password_length)
  @username = username
  @vhost    = vhost

  super(username, vhost, password_length)
end