/* * 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 org.opengis.annotation.UML; import static org.opengis.annotation.Specification.*; /** * Throws if an operation name given to {@link GridCoverageProcessor} is not a know operation. * * <P> </P> * <TABLE WIDTH="80%" ALIGN="center" CELLPADDING="18" BORDER="4" BGCOLOR="#FFE0B0"> * <TR><TD> * <P align="justify"><STRONG>WARNING: THIS CLASS WILL CHANGE.</STRONG> Current API is derived from OGC * <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverages Implementation specification 1.0</A>. * We plan to replace it by new interfaces derived from ISO 19123 (<CITE>Schema for coverage geometry * and functions</CITE>). 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.</P> * </TD></TR> * </TABLE> * * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/library/opengis/src/main/java/org/opengis/coverage/processing/OperationNotFoundException.java $ * @version <A HREF="http://www.opengis.org/docs/01-004.pdf">Grid Coverage specification 1.0</A> * @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); } }