net.sf.juffrou.xml.error.JuffrouXmlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of juffrou-xml Show documentation
Show all versions of juffrou-xml Show documentation
Juffrou XML is simplified marshaling for java beans into XML and back.
package net.sf.juffrou.xml.error;
public class JuffrouXmlException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -771016198131250008L;
public JuffrouXmlException() {
super();
}
public JuffrouXmlException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
public JuffrouXmlException(String arg0) {
super(arg0);
}
public JuffrouXmlException(Throwable arg0) {
super(arg0);
}
}