net.morimekta.util.json.JsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of io-util Show documentation
Show all versions of io-util Show documentation
Utilities helping with reading writing and keeping various data
formats, including JSON, binary data and formatted text.
/*
* Copyright (c) 2016, Stein Eldar Johnsen
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package net.morimekta.util.json;
import net.morimekta.util.Strings;
import java.io.IOException;
/**
* Exception in JSON parsing or generation.
*/
public class JsonException extends Exception {
private final String line;
private final int lineNo;
private final int linePos;
private final int len;
public JsonException(String message) {
this(message, null, 0, 0, 0);
}
public JsonException(String message, String line, int lineNo, int linePos, int len) {
super(message);
this.line = line;
this.lineNo = lineNo;
this.linePos = linePos;
this.len = len;
}
public JsonException(String message, JsonTokenizer tokenizer, JsonToken token) throws IOException {
super(message);
line = tokenizer.getLine(token.lineNo);
lineNo = token.lineNo;
linePos = token.linePos;
len = token.length();
}
public String getLine() {
return line;
}
public int getLineNo() {
return lineNo;
}
public int getLinePos() {
return linePos;
}
public int getLen() {
return len;
}
public String describe() {
if (getLine() != null) {
return String.format("JSON Error on line %d: %s%n" +
"# %s%n" +
"#%s%s",
getLineNo(),
getLocalizedMessage(),
getLine(),
Strings.times("-", getLinePos()),
Strings.times("^", getLen()));
} else {
return String.format("JSON Error: %s", getLocalizedMessage());
}
}
@Override
public String toString() {
return String.format("JsonException(%s)", describe());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy