All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ajaxjs.js.jsonparser.JsonParseException Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
/**
 * Copyright Sp42 [email protected] 
 *
 * Licensed 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 com.ajaxjs.js.jsonparser;

/**
 * JSON 解析器专用异常类
 * 
 * @author Sp42 [email protected]
 */
public class JsonParseException extends RuntimeException {
	private static final long serialVersionUID = 1L;
	
	public JsonParseException(int charNum, int lineNum, int colNum, String message) {
		this.charNum = charNum;
		this.colNum = colNum;
		this.lineNum = lineNum;
		this.desc = message;
	}

	public JsonParseException(int charNum, int lineNum, int colNum, String message, Throwable cause) {
		this(charNum, lineNum, colNum, message);
		this.cause = cause;
	}

	public JsonParseException(String string) {
		super(string);
	}

	private int charNum;

	private int lineNum;

	private int colNum;

	private String desc;

	private Throwable cause;

	@Override
	public String getMessage() {
		return "JsonParseException[char: " + charNum + ", line: " + lineNum + ", column: " + colNum + "]" + desc + (cause == null ? "" : cause.toString());
	}
	
	@Override
	public String toString() {
		return getMessage();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy