class Europeana::Errors::RequestError

Raised if the API response success flag is false, indicating a problem with the request.

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method
# File lib/europeana/errors.rb, line 30
      def initialize(msg = nil)
        msg ||= <<-MSG
Request error.

There was a problem with your request to the Europeana API.
        MSG
        super(msg)
       end