Package io.vavr

Class NotImplementedError

  • All Implemented Interfaces:
    java.io.Serializable

    public class NotImplementedError
    extends java.lang.Error
    This exception is temporarily used during development in order to indicate that an implementation is missing.

    The idiomatic way is to use one of API.TODO() and API.TODO(String).

    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NotImplementedError()
      Creates a NotImplementedError containing the message "an implementation is missing".
      NotImplementedError​(java.lang.String message)
      Creates a NotImplementedError containing the given message.
    • 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
    • Constructor Detail

      • NotImplementedError

        public NotImplementedError()
        Creates a NotImplementedError containing the message "an implementation is missing".
      • NotImplementedError

        public NotImplementedError​(java.lang.String message)
        Creates a NotImplementedError containing the given message.
        Parameters:
        message - A text that describes the error