Class NonNumericFeaturesException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NonNumericFeaturesException
    extends java.lang.Exception
    An exception to signal the encounter of non numeric features where numeric features have been expected.
    Since:
    0.4.0
    Author:
    Arthur Zimek
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID
      Generated serial version UID.
    • Constructor Summary

      Constructors 
      Constructor Description
      NonNumericFeaturesException()
      An exception to signal the encounter of non numeric features where numeric features have been expected.
      NonNumericFeaturesException​(java.lang.String message)
      An exception to signal the encounter of non numeric features where numeric features have been expected.
      NonNumericFeaturesException​(java.lang.String message, java.lang.Throwable cause)
      An exception to signal the encounter of non numeric features where numeric features have been expected.
      NonNumericFeaturesException​(java.lang.Throwable cause)
      An exception to signal the encounter of non numeric features where numeric features have been expected.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Generated serial version UID.
        See Also:
        Constant Field Values
    • Constructor Detail

      • NonNumericFeaturesException

        public NonNumericFeaturesException()
        An exception to signal the encounter of non numeric features where numeric features have been expected.
        See Also:
        Exception
      • NonNumericFeaturesException

        public NonNumericFeaturesException​(java.lang.String message)
        An exception to signal the encounter of non numeric features where numeric features have been expected.
        Parameters:
        message - Message
        See Also:
        Exception
      • NonNumericFeaturesException

        public NonNumericFeaturesException​(java.lang.Throwable cause)
        An exception to signal the encounter of non numeric features where numeric features have been expected.
        Parameters:
        cause - Throwable cause
        See Also:
        Exception
      • NonNumericFeaturesException

        public NonNumericFeaturesException​(java.lang.String message,
                                           java.lang.Throwable cause)
        An exception to signal the encounter of non numeric features where numeric features have been expected.
        Parameters:
        message - Message
        cause - Throwable Cause
        See Also:
        Exception