org.xmlpull.infoset.view.XmlValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xpp5 Show documentation
Show all versions of xpp5 Show documentation
XML Pull parser library developed by Extreme Computing Lab, Indian University
/* -*- mode: Java; c-basic-offset: 4; indent-tabs-mode: nil; -*- //------100-columns-wide------>|*/
package org.xmlpull.infoset.view;
import org.xmlpull.infoset.XmlBuilderException;
public class XmlValidationException extends XmlBuilderException {
public XmlValidationException(String s) {
super(s);
}
public XmlValidationException(String s, Throwable thrwble) {
super(s, thrwble);
}
}