private JsonException makeError(String message) throws IOException {
return new JsonException(qis.getRow(), qis.getCol(), (char) qis.peek(), message);
}
private JsonException unexpectedChar() throws IOException {
return new JsonException(qis.getRow(), qis.getCol(), (char) qis.peek(), "Unexpected char");
}