module Aws::Json::JSONEngine

def load(json)

def load(json)
  JSON.parse(json)
rescue JSON::ParserError => e
  raise ParseError.new(e)
end