Class FactoryDataException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opengis.util.FactoryException
org.apache.sis.referencing.factory.FactoryDataException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
LocalizationGridException

public class FactoryDataException extends org.opengis.util.FactoryException
Thrown when a factory contains invalid data.
Example: an EPSG database record containing a null value in a column where nulls should not have been allowed.
Since:
0.7
Version:
1.2
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      Serial number for inter-operability with different versions.
      See Also:
  • Constructor Details

    • FactoryDataException

      public FactoryDataException()
      Construct an exception with no detail message.
    • FactoryDataException

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

      public FactoryDataException(Throwable cause)
      Constructs an exception with the specified cause.
      Parameters:
      cause - the cause, saved for later retrieval by the Throwable.getCause() method.
      Since:
      1.2
    • FactoryDataException

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