class GdsApi::BaseError

Abstract error class

def raven_context

https://docs.sentry.io/clients/ruby/context/
Give Sentry extra context about this event
def raven_context
  {
    # Make Sentry group exceptions by type instead of message, so all
    # exceptions like `GdsApi::TimedOutException` will get grouped as one
    # error and not an error per URL.
    fingerprint: [self.class.name],
  }
end