Sha256: 4906be54a40f02dbfb1ed44cc287b4ed9109323c871c0722b66ddfdec0478c01
Contents?: true
Size: 684 Bytes
Versions: 115
Compression:
Stored size: 684 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 # If one tries to define an option name which is forbbiden class OptionNameForbidden < StandardError; end end end end
Version data entries
115 entries across 115 versions & 1 rubygems