Package etithespirit.exception
Class NotImplementedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.UnsupportedOperationException
etithespirit.exception.NotImplementedException
- All Implemented Interfaces:
Serializable
A mimicry of .NET's NotImplementedException which is used for (usually) abstract methods that do not have an implementation, or code that is otherwise incomplete.
- Author:
- Microsoft (for the .NET implementation), Eti (for the Java implementation)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a new instance of this exception using the default message,"This method or operation is not implemented."
NotImplementedException
(String message) Create a new instance of this exception, overriding the display message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotImplementedException
public NotImplementedException()Create a new instance of this exception using the default message,"This method or operation is not implemented."
-
NotImplementedException
Create a new instance of this exception, overriding the display message.- Parameters:
message
- The message to use.
-