Class DWARFExpressionException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- ghidra.app.util.bin.format.dwarf4.expression.DWARFExpressionException
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class DWARFExpressionException extends java.lang.ExceptionA exception that is thrown when dealing withDWARF expressionsor when they areevaluated.Use this class when you want to pass the expressionand the opcode / step in the expression that caused the problem back up the call chain.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description DWARFExpressionException()DWARFExpressionException(java.lang.String message)DWARFExpressionException(java.lang.String message, DWARFExpression expr, int step)DWARFExpressionException(java.lang.String message, DWARFExpression expr, int step, java.lang.Throwable cause)DWARFExpressionException(java.lang.String message, java.lang.Throwable cause)DWARFExpressionException(java.lang.Throwable cause)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description DWARFExpressiongetExpression()java.lang.StringgetMessage()intgetStep()voidsetExpression(DWARFExpression expr)voidsetStep(int step)
 
- 
- 
- 
Constructor Detail- 
DWARFExpressionExceptionpublic DWARFExpressionException() 
 - 
DWARFExpressionExceptionpublic DWARFExpressionException(java.lang.String message, DWARFExpression expr, int step)
 - 
DWARFExpressionExceptionpublic DWARFExpressionException(java.lang.String message, DWARFExpression expr, int step, java.lang.Throwable cause)
 - 
DWARFExpressionExceptionpublic DWARFExpressionException(java.lang.String message, java.lang.Throwable cause)
 - 
DWARFExpressionExceptionpublic DWARFExpressionException(java.lang.String message) 
 - 
DWARFExpressionExceptionpublic DWARFExpressionException(java.lang.Throwable cause) 
 
- 
 - 
Method Detail- 
getExpressionpublic DWARFExpression getExpression() 
 - 
setExpressionpublic void setExpression(DWARFExpression expr) 
 - 
setSteppublic void setStep(int step) 
 - 
getSteppublic int getStep() 
 - 
getMessagepublic java.lang.String getMessage() - Overrides:
- getMessagein class- java.lang.Throwable
 
 
- 
 
-