Package ghidra.util.exception
Class NotYetImplementedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ghidra.util.exception.NotYetImplementedException
- All Implemented Interfaces:
Serializable
NotYetImplementedException is used during development of a class. It is expected that this Exception should not exist in final released classes.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a NotYetImplementedException with no detail message.NotYetImplementedException
(String message) Constructs a NotYetImplementedException with the specified detail 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
-
NotYetImplementedException
public NotYetImplementedException()Constructs a NotYetImplementedException with no detail message.
-
NotYetImplementedException
Constructs a NotYetImplementedException with the specified detail message.
- Parameters:
message
- The message.
-