Package ghidra.util.exception
Class NotEmptyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.util.exception.NotEmptyException
- All Implemented Interfaces:
Serializable
exception thrown whenever some container is expected to be empty and it isn't.
- See Also:
-
Constructor Summary
ConstructorDescriptionconstruct a new NotEmptyException with a default message.NotEmptyException
(String msg) construct a new NotEmptyException with a given 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
-
NotEmptyException
public NotEmptyException()construct a new NotEmptyException with a default message. -
NotEmptyException
construct a new NotEmptyException with a given message.- Parameters:
msg
- overides the default message.
-