Package jj2000.j2k
Class NotImplementedError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- jj2000.j2k.NotImplementedError
-
- All Implemented Interfaces:
Serializable
public class NotImplementedError extends Error
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.
- See Also:
Error
, Serialized Form
-
-
Constructor Summary
Constructors Constructor 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.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotImplementedError
public NotImplementedError()
Constructs a new NotImplementedError exception with the default detail message. The message is:The called method has not been implemented yet. Sorry!
-
NotImplementedError
public NotImplementedError(String m)
Constructs a new NotImplementedError exception with the specified detail message m.- Parameters:
m
- The detail message to use
-
-