
net.yapbam.data.xml.UnsupportedFileVersionException 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;
/** Signals that we tried to parse a stream that contains a yapbam file with a format not supported by this Yapbam version.
*
This exception is thrown when pointing to a file created by a newer version of Yapbam.
*/
public class UnsupportedFileVersionException extends UnsupportedFormatException {
private static final long serialVersionUID = 1L;
UnsupportedFileVersionException(String version) {
super ("File is of version "+version+". Expected "+XMLSerializer.CURRENT_VERSION+" or less");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy