module Aws::Json::JSONEngine

def dump(value)

def dump(value)
  JSON.dump(value)
end

def load(json)

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