/**
 * 
 */
package org.openstreetmap.gui.jmapviewer.tilesources;

/**
 * Required Exception for encountering parse exceptions or invalid nodes 
 * while traversing xml documents retrieved from tile sources. 
 * 
 * @author Jason Huntley
 *
 */
public class TileLoadException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = 2994141843711406304L;

	/**
	 * 
	 */
	public TileLoadException() {

	}

	/**
	 * @param arg0
	 */
	public TileLoadException(String arg0) {
		super(arg0);

	}

	/**
	 * @param arg0
	 */
	public TileLoadException(Throwable arg0) {
		super(arg0);

	}

	/**
	 * @param arg0
	 * @param arg1
	 */
	public TileLoadException(String arg0, Throwable arg1) {
		super(arg0, arg1);

	}

}
