JsonParseError which is exposed by all JSON reading APIsSerializable::inspect to show more useful information
			serialization :: serialization_core
Abstract services to serialize Nit objects to different formatscore :: union_find
union–find algorithm using an efficient disjoint-set data structureapp::http_request main service AsyncHttpRequest
			mpi :: mpi_simple
app.nit on Android using a custom Java entry point
			restful annotation documented at lib/nitcorn/restful.nit
			deserialize_json and JsonDeserializer
			
# Intro `JsonParseError` which is exposed by all JSON reading APIs
module error
import parser_base
# JSON format error at parsing
class JsonParseError
	super Error
	serialize
	# Location of the error in source
	var location: nullable Location = null
end
lib/json/error.nit:11,1--23,3