Sha256: 97340b3f42a4463fc665638b6dbcea751733068df9fececfdfbf82962a82aade
Contents?: true
Size: 511 Bytes
Versions: 13
Compression:
Stored size: 511 Bytes
Contents
# typed: strict # frozen_string_literal: true module EML module REST class UnprocessableEntityError < ::EML::RESTError sig do params( message: T.nilable(String), response: T.nilable(EML::Response) ).void end def initialize(message = nil, response = nil) message ||= "The server understood the request but it could not be " \ "processed (possibly semantically erroneous)" super(message, response) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems