Sha256: 3205d7a5316069c8243c8d63f48f1321d79049a7fe48c1e9129b013c96b34fb4
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true module Qonfig # @api public # @since 0.1.0 Error = Class.new(StandardError) # @api public # @since 0.1.0 ArgumentError = Class.new(Error) # @see Qonfig::Settings # # @api public # @since 0.1.0 UnknownSettingError = Class.new(Error) # @see Qonfig::Settings # # @api public # @since 0.2.0 AmbiguousSettingValueError = Class.new(Error) # @see Qonfig::Settings # @see Qonfig::Settings::KeyGuard # @see Qonfig::Commands::AddOption # @see Qonfig::Commands::AddNestedOption # # @api public # @since 0.2.0 CoreMethodIntersectionError = Class.new(Error) # @see Qonfig::Settings # @see Qonfig::DataSet # # @api public # @since 0.1.0 FrozenSettingsError = begin # rubocop:disable Naming/ConstantName # :nocov: if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.5.0') Class.new(::FrozenError) else Class.new(::RuntimeError) end # :nocov: end # @see Qonfig::Commands::LoadFromYAML # # @api public # @since 0.2.0 IncompatibleYAMLStructureError = Class.new(Error) # @see Qonfig::Loaders::YAML # # @api public # @since 0.2.0 FileNotFoundError = Class.new(Errno::ENOENT) # @see Qonfig::Commands::LoadFromSelf # # @api public # @since 0.2.0 SelfDataNotFoundError = Class.new(Error) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
qonfig-0.3.0 | lib/qonfig/error.rb |
qonfig-0.2.0 | lib/qonfig/error.rb |