Package ghidra.program.model.lang
Class IncompatibleMaskException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ghidra.util.exception.UsrException
-
- ghidra.program.model.lang.IncompatibleMaskException
-
- All Implemented Interfaces:
java.io.Serializable
public class IncompatibleMaskException extends UsrException
An IncompatibleMaskException is thrown when operations are attempting involving two masks of different lengths.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IncompatibleMaskException()
construct a new IncompatibleMaskException with no message.IncompatibleMaskException(java.lang.String message)
constructs a new IncompatiblemaskException with a descriptive message.
-
-
-
Constructor Detail
-
IncompatibleMaskException
public IncompatibleMaskException()
construct a new IncompatibleMaskException with no message.
-
IncompatibleMaskException
public IncompatibleMaskException(java.lang.String message)
constructs a new IncompatiblemaskException with a descriptive message.- Parameters:
message
- the description of what went wrong.
-
-