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