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

org.opengis.coverage.processing.OperationNotFoundException Maven / Gradle / Ivy

There is a newer version: 24.2-oss84-1
Show newest version
/*
 *    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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy