parseexception.java

来自「JfreeChart 常用图表例子」· Java 代码 · 共 215 行

JAVA
215
字号
/* ======================================================================== * JCommon : a free general purpose class library for the Java(tm) platform * ======================================================================== * * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. *  * Project Info:  http://www.jfree.org/jcommon/index.html * * This library is free software; you can redistribute it and/or modify it under the terms * of the GNU Lesser General Public License as published by the Free Software Foundation; * either version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along with this * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. * * [Java is a trademark or registered trademark of Sun Microsystems, Inc.  * in the United States and other countries.] *  * ------------------- * ParseException.java * ------------------- * (C)opyright 2003-2005, by Thomas Morgner and Contributors. * * Original Author:  Thomas Morgner; * Contributor(s):   David Gilbert (for Object Refinery Limited); * * $Id: ParseException.java,v 1.3 2005/06/01 14:12:31 taqua Exp $ * * Changes * ------------------------- * 10.06.2003 : Initial version * */package org.jfree.xml;import java.io.PrintStream;import java.io.PrintWriter;import org.xml.sax.Locator;import org.xml.sax.SAXException;/** * A parse exception. * * @author Thomas Morgner */public class ParseException extends SAXException {    /** The line, where the error occured. */    private int line;    /** The column, where the error occured. */    private int column;    /**     * Creates a new ParseException with the given message.     *     * @param message the message     */    public ParseException(final String message) {        super(message);        fillLocation(null);    }    /**     * Creates a new ParseException with the given root exception.     *     * @param e the exception     */    public ParseException(final Exception e) {        super(e);        fillLocation(null);    }    /**     * Creates a new ParseException with the given message and root exception.     *     * @param s the message     * @param e the exception     */    public ParseException(final String s, final Exception e) {        super(s, e);        fillLocation(null);    }    /**     * Creates a new ParseException with the given message and the locator.     *     * @param message the message     * @param locator the locator of the parser     */    public ParseException(final String message, final Locator locator) {        super(message);        fillLocation(locator);    }    /**     * Creates a new ParseException with the given root exception     * and the locator.     *     * @param e the exception     * @param locator the locator of the parser     */    public ParseException(final Exception e, final Locator locator) {        super(e);        fillLocation(locator);    }    /**     * Creates a new ParseException with the given message, root exception     * and the locator.     *     * @param s the message     * @param e the exception     * @param locator the locator of the parser     */    public ParseException(final String s, final Exception e, final Locator locator) {        super(s, e);        fillLocation(locator);    }    /**     * Modifies the message to give more detailed location information.     *     * @return the modified exception message.     */    public String getMessage() {        final StringBuffer message = new StringBuffer(String.valueOf(super.getMessage()));        message.append(" [Location: Line=");        message.append(this.line);        message.append(" Column=");        message.append(this.column);        message.append("] ");        return message.toString();    }    /**     * Fills the location with the given locator.     *     * @param locator the locator or null.     */    protected void fillLocation (final Locator locator) {        if (locator == null) {            this.line = -1;            this.column = -1;        }        else {            this.line = locator.getLineNumber();            this.column = locator.getColumnNumber();        }    }    /**     * Returns the line of the parse position where the error occured.     *     * @return the line number or -1 if not known.     */    public int getLine() {        return this.line;    }    /**     * Returns the column of the parse position where the error occured.     *     * @return the column number or -1 if not known.     */    public int getColumn() {        return this.column;    }    /**     * Prints the stack trace to the specified stream.     *     * @param stream  the output stream.     */    public void printStackTrace(final PrintStream stream) {        super.printStackTrace(stream);        if (getException() != null) {            stream.println("ParentException: ");            getException().printStackTrace(stream);        }    }    /**     * Override toString to pick up any embedded exception.     *     * @return A string representation of this exception.     */    public String toString() {        return getClass().getName() + ": " + getMessage();    }    /**     * Prints the stack trace to the specified writer.     *     * @param writer  the writer.     */    public void printStackTrace(final PrintWriter writer) {        super.printStackTrace(writer);        if (getException() != null) {            writer.println("ParentException: ");            getException().printStackTrace(writer);        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?