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

org.cybergarage.xml.ParserException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/******************************************************************
*
*	CyberXML for Java
*
*	Copyright (C) Satoshi Konno 2002
*
*	File: ParserException.java
*
*	Revision;
*
*	11/27/02
*		- first revision.
*	12/26/03
*		- Changed to a sub class of Exception instead of SAXException.
*
******************************************************************/

package org.cybergarage.xml;

public class ParserException extends Exception 
{
	public ParserException(Exception e)
	{
		super(e);
	}
	
	public ParserException(String s)
	{
		super(s);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy