File: error.rb

package info (click to toggle)
ruby-dry-configurable 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 184 kB
  • sloc: ruby: 397; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 166 bytes parent folder | download
1
2
3
4
5
6
7
module Dry
  module Configurable
    Error = Class.new(::StandardError)
    AlreadyDefinedConfig = ::Class.new(Error)
    FrozenConfig = ::Class.new(Error)
  end
end