Package io.vavr
Class NotImplementedError
java.lang.Object
java.lang.Throwable
java.lang.Error
io.vavr.NotImplementedError
- All Implemented Interfaces:
Serializable
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:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates aNotImplementedError
containing the message "an implementation is missing".NotImplementedError
(String message) Creates aNotImplementedError
containing the givenmessage
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotImplementedError
public NotImplementedError()Creates aNotImplementedError
containing the message "an implementation is missing". -
NotImplementedError
Creates aNotImplementedError
containing the givenmessage
.- Parameters:
message
- A text that describes the error
-