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

mil.nga.geopackage.GeoPackageException Maven / Gradle / Ivy

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