class Snowglobe::Configuration::NotConfiguredError

Public Class Methods

new(example) click to toggle source
Calls superclass method
# File lib/snowglobe/configuration.rb, line 34
      def initialize(example)
        super(<<~MESSAGE)
          You need to configure Snowglobe before you can use it! For example:

          #{example}
        MESSAGE
      end