class RabbitmqClient::InvalidCallback

Custom error thrown when an unsupported callback type is used

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/rabbitmq_client/callback.rb, line 6
def initialize(name)
  super("The Callback '#{name}' is an invalid callback and cannot be used")
end