Sha256: b4bf26e848681bffa7d2c8e0c95f3dd203afaacef786f3d873d6de402112cc42
Contents?: true
Size: 695 Bytes
Versions: 26
Compression:
Stored size: 695 Bytes
Contents
# frozen_string_literal: true module RubyRabbitmqJanus module Errors module Process # Define a super class for all error in Process::Concurency class class BaseConcurency < RubyRabbitmqJanus::Errors::BaseJanus def initialize(message) super "[Concurency]#{message}", :fatal end end module Concurency # Error for Process::Concurency#initialize class Initializer < RubyRabbitmqJanus::Errors::Process::BaseConcurency def initialize super 'Error initialize concurency class' end end end end end end require 'rrj/errors/process/keepalive' require 'rrj/errors/process/event'
Version data entries
26 entries across 26 versions & 1 rubygems