mil.nga.geopackage.GeoPackageException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geopackage-core Show documentation
Show all versions of geopackage-core Show documentation
Core functionality for GeoPackage implementations
package mil.nga.geopackage;
/**
* GeoPackage exception
*
* @author osbornb
*/
public class GeoPackageException extends RuntimeException {
/**
* Serial version id
*/
private static final long serialVersionUID = 1L;
/**
* Constructor
*/
public GeoPackageException() {
super();
}
/**
* Constructor
*
* @param message
*/
public GeoPackageException(String message) {
super(message);
}
/**
* Constructor
*
* @param message
* @param throwable
*/
public GeoPackageException(String message, Throwable throwable) {
super(message, throwable);
}
/**
* Constructor
*
* @param throwable
*/
public GeoPackageException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy