Sha256: db794b2b63c777a1fa6755a2d4ca284dc61cbcdf2b7b45f24844b2def90cab9e
Contents?: true
Size: 648 Bytes
Versions: 18
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module RubyRabbitmqJanus module Errors # @author VAILLANT Jeremy <jeremy.vaillant@dazzl.tv> # Define an error if the configuration file is not here class ConfigFileNotFound < Errors::RRJError def initialize(file) super "Error for configuration file (#{file}), does on exist.", :error end end # @author VAILLANT Jeremy <jeremy.vaillant@dazzl.tv> # Define and error if rubrik level is not present class LevelNotDefine < Errors::RRJError def initialize super 'Error in configuration file : option level is not present.', :warn end end end end
Version data entries
18 entries across 18 versions & 1 rubygems