
net.yapbam.data.xml.UnsupportedFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yapbam-commons Show documentation
Show all versions of yapbam-commons Show documentation
Commons Yapbam classes used by desktop and Android versions.
package net.yapbam.data.xml;
import java.io.IOException;
import org.xml.sax.SAXException;
/** Signals that we tried to parse a stream that contains unsupported format.
*
This exception is thrown when pointing to an empty file or an xml file that not contains
* Yapbam data, or when the file not contains valid xml data.
*/
public class UnsupportedFormatException extends IOException {
private static final long serialVersionUID = 1L;
UnsupportedFormatException(String message) {
}
UnsupportedFormatException(SAXException e) {
super(e);
}
public UnsupportedFormatException(Throwable e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy