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:
java.io.Serializable
public class DuplicateNameException extends UsrException
Exception thrown whenever a method tries give something a name and that name is already used.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DuplicateNameException()
constructs a new DuplicatenameException with a default message.DuplicateNameException(java.lang.String usrMessage)
construct a new DuplicateNameException with a given message.
-
-
-
Constructor Detail
-
DuplicateNameException
public DuplicateNameException()
constructs a new DuplicatenameException with a default message.
-
DuplicateNameException
public DuplicateNameException(java.lang.String usrMessage)
construct a new DuplicateNameException with a given message.- Parameters:
usrMessage
- overides the default message.
-
-