Sha256: 58a94f8f2ccde96c3c8a877fb9e19f52c3456709900121a39be5415a8bf46779
Contents?: true
Size: 565 Bytes
Versions: 19
Compression:
Stored size: 565 Bytes
Contents
# frozen-string_literal: true # :reek:IrresponsibleModule module RubyRabbitmqJanus module Errors module Rabbit # Error class for all Event class Event < BaseRabbit def initialize(message, level = :fatal) super("[Connect] #{message}", level) end end module BaseEvent # Error class for Rabbit BaseEvent class Initialize < RubyRabbitmqJanus::Errors::Rabbit::Event def initialize super 'Error in intializer BaseEvent' end end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems