Sha256: d7e9a07ab36731f37d0e54bcef00262bfbe5adb8405570e3f52111eca8bc52d0
Contents?: true
Size: 827 Bytes
Versions: 26
Compression:
Stored size: 827 Bytes
Contents
# frozen_string_literal: true module RubyRabbitmqJanus module Errors module Process # Define a super class for all error in Process::Concurency::Event class class BaseEvent < RubyRabbitmqJanus::Errors::Process::BaseConcurency def initialize(message) super "[Event] #{message}" end end module Event # Error for Process::Concurency::Event#initialize class Initializer < RubyRabbitmqJanus::Errors::Process::BaseEvent def initializer super 'Error Event initializer' end end # Error for Process::Concurency::Event#run class Run < RubyRabbitmqJanus::Errors::Process::BaseEvent def initializer super 'Error running block code' end end end end end end
Version data entries
26 entries across 26 versions & 1 rubygems