Class FeatureOperationException

Object
Throwable
Exception
RuntimeException
FeatureOperationException
All Implemented Interfaces:
Serializable

public class FeatureOperationException extends RuntimeException
Thrown when Operation.apply(…) is invoked but the operation cannot complete. The operation can fail for a variety of reasons including but not limited to:
  • I/O or SQL error while fetching data,
  • failure to apply a map projection on a geometric property.
The failure may be caused by illegal arguments, but not necessarily.
Since:
3.1
See Also:
  • Constructor Details

    • FeatureOperationException

      public FeatureOperationException()
      Creates an exception with no message.
    • FeatureOperationException

      public FeatureOperationException(String message)
      Creates an exception with the specified message.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
    • FeatureOperationException

      public FeatureOperationException(String message, Throwable cause)
      Creates an exception with the specified message and cause.
      Parameters:
      message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      cause - the cause, saved for later retrieval by the Throwable.getCause() method.