Package ghidra.util.exception
Class DuplicateNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.util.exception.DuplicateNameException
- All Implemented Interfaces:
Serializable
Exception thrown whenever a method tries give something a name and that name is already used.
- See Also:
-
Constructor Summary
ConstructorDescriptionconstructs a new DuplicatenameException with a default message.DuplicateNameException
(String usrMessage) construct a new DuplicateNameException 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
-
DuplicateNameException
public DuplicateNameException()constructs a new DuplicatenameException with a default message. -
DuplicateNameException
construct a new DuplicateNameException with a given message.- Parameters:
usrMessage
- overrides the default message.
-