|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.lang.Throwable
java.lang.Error
ucar.jpeg.jj2000.j2k.NotImplementedError
public class NotImplementedError
This exception is thrown whenever a feature or functionality that has not been implemented is calle.
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 Form| Constructor Summary | |
|---|---|
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. |
|
| Method Summary |
|---|
| Methods inherited from class java.lang.Throwable |
|---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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 |
|---|
public NotImplementedError()
The called method has not been implemented yet. Sorry!
public NotImplementedError(String m)
m - The detail message to use
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||