class WikipediaWrapper::ConfigurationError

Exception raised when there is a problem with the configuration

Public Class Methods

new(msg) click to toggle source
# File lib/wikipedia_wrapper/exception.rb, line 20
def initialize(msg)
  @msg = msg
end

Public Instance Methods

message() click to toggle source
# File lib/wikipedia_wrapper/exception.rb, line 24
def message
  "#{@msg}"
end