Sha256: f3183e165defc9df2567aa9f3d94a1a71038f30726aa4b4cb17f3e094c1d9bc6
Contents?: true
Size: 304 Bytes
Versions: 137
Compression:
Stored size: 304 Bytes
Contents
# frozen_string_literal: true module GraphQL class StringEncodingError < GraphQL::RuntimeTypeError attr_reader :string def initialize(str) @string = str super("String \"#{str}\" was encoded as #{str.encoding}! GraphQL requires an encoding compatible with UTF-8.") end end end
Version data entries
137 entries across 137 versions & 1 rubygems