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

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

Go to download

A pure Java Open Source implementation of the UPnP stack for JDK 1.4 or above

The 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