org.opengis.coverage.processing.OperationNotFoundException 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.processing;
import static org.opengis.annotation.Specification.*;
import org.opengis.annotation.UML;
/**
* Throws if an operation name given to {@link GridCoverageProcessor} is not a know operation.
*
*
*
*
*
* WARNING: THIS CLASS WILL CHANGE. Current API is derived from OGC
* Grid Coverages Implementation specification 1.0.
* We plan to replace it by new interfaces derived from ISO 19123 (Schema for coverage geometry
* and functions). Current interfaces should be considered as legacy and are included in this
* distribution only because they were part of GeoAPI 1.0 release. We will try to preserve as much
* compatibility as possible, but no migration plan has been determined yet.
*
*
*
* @version Grid Coverage specification 1.0
* @author Martin Desruisseaux (IRD)
* @since GeoAPI 1.0
*/
@UML(identifier = "GP_OperationNotFound", specification = OGC_01004)
public class OperationNotFoundException extends IllegalArgumentException {
/** Serial number for interoperability with different versions. */
private static final long serialVersionUID = 8654574655958181935L;
/** Creates an exception with no message. */
public OperationNotFoundException() {
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 OperationNotFoundException(String message) {
super(message);
}
/**
* 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.
* @param cause The cause, or {@code null}.
* @since GeoAPI 2.2
*/
public OperationNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}