Sha256: 6a278f5130424674a107c023f8561fd015e33d8ab20104d17cc447428d8be774

Contents?: true

Size: 565 Bytes

Versions: 2

Compression:

Stored size: 565 Bytes

Contents

# encoding: utf-8
module FeduxOrgStdlib
  class AppConfig
    module Exceptions
      # One wants to modify a locked config
      class ConfigLocked < StandardError; end

      # Found config file is not readable
      class ConfigFileNotReadable < StandardError; end

      # No allowed config file could be found
      class NoConfigFileFound < StandardError; end

      # If no module is given on class
      class NamespaceIsMissing < StandardError; end

      # If no class name is present
      class ClassNameIsMissing < StandardError; end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fedux_org-stdlib-0.6.7 lib/fedux_org_stdlib/app_config/exceptions.rb
fedux_org-stdlib-0.6.6 lib/fedux_org_stdlib/app_config/exceptions.rb