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:
java.io.Serializable
public class NotYetImplementedException extends java.lang.RuntimeException
NotYetImplementedException is used during development of a class. It is expected that this Exception should not exist in final released classes.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotYetImplementedException()
Constructs a NotYetImplementedException with no detail message.NotYetImplementedException(java.lang.String message)
Constructs a NotYetImplementedException with the specified detail message.
-
-
-
Constructor Detail
-
NotYetImplementedException
public NotYetImplementedException()
Constructs a NotYetImplementedException with no detail message.
-
NotYetImplementedException
public NotYetImplementedException(java.lang.String message)
Constructs a NotYetImplementedException with the specified detail message.
- Parameters:
message
- The message.
-
-