Sha256: a4762f08b64cfad3190d48593323327b5a0c2bdf8bbb8ef2e969fa4d60d409ba
Contents?: true
Size: 459 Bytes
Versions: 13
Compression:
Stored size: 459 Bytes
Contents
# typed: strict # frozen_string_literal: true module EML module REST class NotFoundError < ::EML::RESTError sig do params( message: T.nilable(String), response: T.nilable(EML::Response), id: String ).void end def initialize(message = nil, response = nil, id:) message ||= %(A record could not be found with ID "#{id}") super(message, response) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems