Sha256: 505cf2ef2396b957e66a61e7e753356ede035cb0896249d148382d2edeb318d8
Contents?: true
Size: 565 Bytes
Versions: 13
Compression:
Stored size: 565 Bytes
Contents
# typed: strict # frozen_string_literal: true module EML module REST class AuthenticationError < ::EML::RESTError sig do params( message: T.nilable(String), response: T.nilable(EML::Response) ).void end def initialize(message = nil, response = nil) message ||= "Your credentials were rejected by the server. " \ "Please confirm you have set your username and password in the " \ "appropriate country configuration" super(message, response) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems