com.rgi.geopackage.features.WellKnownBinaryFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagd Show documentation
Show all versions of swagd Show documentation
SWAGD: Software to Aggregate Geospatial Data
The newest version!
package com.rgi.geopackage.features;
/**
* @author Luke Lambert
*/
@SuppressWarnings({"CheckedExceptionClass", "SerializableHasSerializationMethods", "DeserializableClassInSecureContext", "SerializableClassInSecureContext"})
public class WellKnownBinaryFormatException extends Exception
{
private static final long serialVersionUID = 160039456060440345L;
/**
* Constructor
*
* @param message
* Error message
*/
public WellKnownBinaryFormatException(final String message)
{
super(message);
}
/**
* Constructor
*
* @param cause
* Original error
*/
public WellKnownBinaryFormatException(final Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy