class LemonWay::MissingConfigurationError

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/lemon_way/error.rb, line 5
def initialize
  super(%(Your LemonWay configuration is missing.
    Try:

    LemonWay.configuration = {
      login: 'YOUR_LOGIN',
      password: 'YOUR_PASSWORD',
      company: 'YOUR_COMPANY'
    }

    These are the optional options: { sandbox:, language: }
  ))
end