public class NotYetImplementedException extends RuntimeException
This exception should be used only during development; there should be no code throwing this exception in a released product!
Note that there are no constructors accepting a cause (throwable), since
it should be self evident that the cause is the lack of implemented code.
Thus Throwable.getCause()
will always return null
.
Constructor and Description |
---|
NotYetImplementedException()
Constructs a new runtime exception with null as its detail message.
|
NotYetImplementedException(String message)
Constructs a new runtime exception with the specified detail message.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public NotYetImplementedException()
public NotYetImplementedException(String message)
message
- the detail messageCopyright © 2015. All Rights Reserved.