org.opengis.coverage.grid.GridNotEditableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2005 Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.coverage.grid;
import static org.opengis.annotation.Specification.*;
import org.opengis.annotation.UML;
/**
* Thrown when an attempt is made to write in a non-editable grid.
*
* @version Grid Coverage specification 1.0
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 1.0
* @see GridCoverage#isDataEditable
*/
@UML(identifier = "GC_GridNotEditable", specification = OGC_01004)
public class GridNotEditableException extends IllegalStateException {
/** Serial number for interoperability with different versions. */
private static final long serialVersionUID = 612186655921122650L;
/** Creates an exception with no message. */
public GridNotEditableException() {
super();
}
/**
* Creates an exception with the specified message.
*
* @param message The detail message. The detail message is saved for later retrieval by the
* {@link #getMessage()} method.
*/
public GridNotEditableException(String message) {
super(message);
}
}