forked from I2P_Developers/i2p.i2p
Unmodified cybergarage-upnp from github rev 9499b03 2015-02-05 https://github.com/cybergarage/cybergarage-upnp/commits/master which is the same as rev 3ed1af9 2014-07-28 except for the addition of README.md which we aren't using. This is post-version 3.0. Omitted files: router/java/src/org/cybergarage/xml/parser/XercesParser.java router/java/src/org/cybergarage/xml/parser/XmlPullParser.java router/java/src/org/cybergarage/xml/parser/kXML2Parser.java chmod all files back to 644. Diverging from 2.1 checkin rev 59eae97dbb470d8c4a1e4dba3a9763e134bb0c53 in prep for merging. License unchanged. Compile tested only.
31 lines
544 B
Java
31 lines
544 B
Java
/******************************************************************
|
|
*
|
|
* 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);
|
|
}
|
|
} |