All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.yapbam.data.xml.UnsupportedFormatException Maven / Gradle / Ivy

There is a newer version: 1.9.1
Show newest version
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