package com.jbidwatcher.util.xml;
/* This file is part of NanoXML.
*
* $Revision: 1.4 $
* $Date: 2005/02/14 03:24:01 $
* $Name: $
*
* Copyright (C) 2000 Marc De Scheemaecker, All Rights Reserved.
*
* This software is provided 'as-is', without any express or implied warranty.
* In no event will the authors be held liable for any damages arising from the
* use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software in
* a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
*
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
*
* 3. This notice may not be removed or altered from any source distribution.
*/
// Removed from the NanoXML package, so it can be easily integrated
// w/ JBidwatcher. -- mrs: 07-August-2000 21:24
/**
* An XMLParseException is thrown when an error occures while parsing an XML
* string.
* <P>
* $Revision: 1.4 $<BR>
* $Date: 2005/02/14 03:24:01 $<P>
*
* @see XMLElement
*
* @author Marc De Scheemaecker
* <<A HREF="mailto:Marc.DeScheemaecker@advalvas.be"
* >Marc.DeScheemaecker@advalvas.be</A>>
* @version 1.5
*/
public class XMLParseException extends RuntimeException {
/**
* Where the error occurred, or -1 if the line number is unknown.
*/
private int lineNr;
/**
* Creates an exception.
*
* @param tag The name of the tag where the error is located.
* @param message A message describing what went wrong.
*/
public XMLParseException(String tag, String message) {
super("XML Parse Exception during parsing of "
+ ((tag == null) ? "the XML definition" : ("a " + tag + "-tag"))
+ ": " + message);
this.lineNr = -1;
}
/**
* Creates an exception.
*
* @param tag The name of the tag where the error is located.
* @param lineNr The number of the line in the input.
* @param message A message describing what went wrong.
*/
public XMLParseException(String tag, int lineNr, String message) {
super("XML Parse Exception during parsing of "
+ ((tag == null) ? "the XML definition" : ("a " + tag + "-tag"))
+ " at line " + lineNr + ": " + message);
this.lineNr = lineNr;
}
/**
* Where the error occurred, or -1 if the line number is unknown.
*
* @return - The line number of the error.
*/
public int getLineNr() {
return this.lineNr;
}
}