Sha256: 2604e5b679b8e43f9719cf2007b3c2323621302d13e41aaaa7066fd29db311c6
Contents?: true
Size: 545 Bytes
Versions: 138
Compression:
Stored size: 545 Bytes
Contents
module Oj class Error < StandardError end # Error # An Exception that is raised as a result of a parse error while parsing a JSON document. class ParseError < Error end # ParseError # An Exception that is raised as a result of a path being too deep. class DepthError < Error end # DepthError # An Exception that is raised if a file fails to load. class LoadError < Error end # LoadError # An Exception that is raised if there is a conflict with mimicing JSON class MimicError < Error end # MimicError end # Oj
Version data entries
138 entries across 138 versions & 1 rubygems