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:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates aNotImplementedErrorcontaining the message "an implementation is missing".NotImplementedError(String message) Creates aNotImplementedErrorcontaining the givenmessage. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
NotImplementedError
public NotImplementedError()Creates aNotImplementedErrorcontaining the message "an implementation is missing". -
NotImplementedError
Creates aNotImplementedErrorcontaining the givenmessage.- Parameters:
message- A text that describes the error
-