Exception: Radiant::Helper::InvalidConfigurationError

Inherits:
Exception
  • Object
show all
Defined in:
lib/radiant_helper_errors.rb

Overview

InvalidResponseError

Instance Method Summary collapse

Constructor Details

#initialize(config_name) ⇒ InvalidConfigurationError

Returns a new instance of InvalidConfigurationError.



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/radiant_helper_errors.rb', line 9

def initialize(config_name)
  super(%{
Radiant::Helper was not initialized correctly!

If you are using the application_configuration gem then set the config param '#{config_name.downcase}'
equal to the host of your Radiant server.

If you are not using this gem (why aren't you?) then you can configure this setting by
setting a constant called: '#{config_name.upcase}'.
    }.strip)
end