summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2023-08-17 17:24:21 -0400
committerGlenn Smith <glenn@vector35.com>2023-08-25 14:26:59 -0400
commit5046073446456512359493848692557442235294 (patch)
treeec593ee29d4ca011745df55d21c4498695f93fd2
parentc618591f29b35017802fef7a5209fd3b9dbfac30 (diff)
Make the IL exceptions include stack traces
-rw-r--r--highlevelilinstruction.h5
-rw-r--r--lowlevelilinstruction.h5
-rw-r--r--mediumlevelilinstruction.h5
3 files changed, 6 insertions, 9 deletions
diff --git a/highlevelilinstruction.h b/highlevelilinstruction.h
index 502dd582..0476a182 100644
--- a/highlevelilinstruction.h
+++ b/highlevelilinstruction.h
@@ -167,11 +167,10 @@ namespace BinaryNinja
/*!
\ingroup highlevelil
*/
- class HighLevelILInstructionAccessException : public std::exception
+ class HighLevelILInstructionAccessException : public ExceptionWithStackTrace
{
public:
- HighLevelILInstructionAccessException() : std::exception() {}
- virtual const char* what() const NOEXCEPT { return "invalid access to HLIL instruction"; }
+ HighLevelILInstructionAccessException() : ExceptionWithStackTrace("invalid access to HLIL instruction") {}
};
/*!
diff --git a/lowlevelilinstruction.h b/lowlevelilinstruction.h
index 7557a1ec..99aba8ad 100644
--- a/lowlevelilinstruction.h
+++ b/lowlevelilinstruction.h
@@ -355,11 +355,10 @@ namespace BinaryNinja
/*!
\ingroup lowlevelil
*/
- class LowLevelILInstructionAccessException : public std::exception
+ class LowLevelILInstructionAccessException : public ExceptionWithStackTrace
{
public:
- LowLevelILInstructionAccessException() : std::exception() {}
- virtual const char* what() const NOEXCEPT { return "invalid access to LLIL instruction"; }
+ LowLevelILInstructionAccessException() : ExceptionWithStackTrace("invalid access to LLIL instruction") {}
};
/*!
diff --git a/mediumlevelilinstruction.h b/mediumlevelilinstruction.h
index 90d2700c..bcac516b 100644
--- a/mediumlevelilinstruction.h
+++ b/mediumlevelilinstruction.h
@@ -205,11 +205,10 @@ namespace BinaryNinja
/*!
\ingroup mediumlevelil
*/
- class MediumLevelILInstructionAccessException : public std::exception
+ class MediumLevelILInstructionAccessException : public ExceptionWithStackTrace
{
public:
- MediumLevelILInstructionAccessException() : std::exception() {}
- virtual const char* what() const NOEXCEPT { return "invalid access to MLIL instruction"; }
+ MediumLevelILInstructionAccessException() : ExceptionWithStackTrace("invalid access to MLIL instruction") {}
};
/*!