org.cybergarage.xml.ParserException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of upnp-stack-jdk13 Show documentation
Show all versions of upnp-stack-jdk13 Show documentation
A pure Java Open Source implementation of the UPnP stack backported for JDK13
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.getMessage());
}
public ParserException(String s)
{
super(s);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy