Class NotImplementedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ns.tcpframework.exceptions.NotImplementedException
- All Implemented Interfaces:
Serializable
Exception thrown to indicate that a requested operation or functionality
has not been implemented. This is used as a placeholder for
methods or features that are planned but not yet available.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotImplementedException(String message) Constructs a new NotImplementedException with the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotImplementedException
Constructs a new NotImplementedException with the specified detail message.- Parameters:
message- The detail message explaining the reason for the exception.
-