Package io.vavr
Class NotImplementedError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- io.vavr.NotImplementedError
-
- All Implemented Interfaces:
java.io.Serializable
public class NotImplementedError extends java.lang.ErrorThis 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()andAPI.TODO(String).- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description NotImplementedError()Creates aNotImplementedErrorcontaining the message "an implementation is missing".NotImplementedError(java.lang.String message)Creates aNotImplementedErrorcontaining the givenmessage.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NotImplementedError
public NotImplementedError()
Creates aNotImplementedErrorcontaining the message "an implementation is missing".
-
NotImplementedError
public NotImplementedError(java.lang.String message)
Creates aNotImplementedErrorcontaining the givenmessage.- Parameters:
message- A text that describes the error
-
-