Sha256: 8a7dbce5b40c52382f5f3756e7989cc311e251929a703004235bfcd273d11195
Contents?: true
Size: 514 Bytes
Versions: 160
Compression:
Stored size: 514 Bytes
Contents
# frozen_string_literal: true module GraphQL module StaticValidation class ValidationTimeoutError < StaticValidation::Error def initialize(message, path: nil, nodes: []) super(message, path: path, nodes: nodes) end # A hash representation of this Message def to_h extensions = { "code" => code } super.merge({ "extensions" => extensions }) end def code "validationTimeout" end end end end
Version data entries
160 entries across 160 versions & 2 rubygems