public class NotImplementedError extends Error
Its purpose it is to ease the development and testing process. A class that partially implements its functionality should throw a NotImplementedError when a method that has not yet been implemented is called.
This class is made a subclass of Error since it should never be caught by an application. There is no need to declare this exception in the throws clause of a method.
Error
,
Serialized FormConstructor and Description |
---|
NotImplementedError()
Constructs a new NotImplementedError exception with
the default detail message.
|
NotImplementedError(String m)
Constructs a new NotImplementedError exception with
the specified detail message m.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public NotImplementedError()
The called method has not been implemented yet. Sorry!
public NotImplementedError(String m)
m
- The detail message to useCopyright © 2016 Open Microscopy Environment