Class NormalizerException

All Implemented Interfaces:
Serializable

public class NormalizerException extends GeometryEstimatorException
Raised when normalizer cannot normalize points. Usually this happens when only a point is provided or all provided points are located too close to each other, and hence normalization scale becomes infinite creating a numerical degeneracy.
See Also:
  • Constructor Details

    • NormalizerException

      public NormalizerException()
      Constructor.
    • NormalizerException

      public NormalizerException(String message)
      Constructor with String containing message.
      Parameters:
      message - message indicating the cause of the exception.
    • NormalizerException

      public NormalizerException(String message, Throwable cause)
      Constructor with message and cause.
      Parameters:
      message - message describing the cause of the exception.
      cause - instance containing the cause of the exception.
    • NormalizerException

      public NormalizerException(Throwable cause)
      Constructor with cause.
      Parameters:
      cause - instance containing the cause of the exception.