diff options
Diffstat (limited to 'include/chill_error.hh')
-rw-r--r-- | include/chill_error.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/chill_error.hh b/include/chill_error.hh index 20a8362..a43eac4 100644 --- a/include/chill_error.hh +++ b/include/chill_error.hh @@ -18,6 +18,10 @@ namespace chill { ir(const std::string &msg) : std::runtime_error(msg) {} }; + struct build : public std::runtime_error { + build(const std::string &msg) : std::runtime_error(msg) {} + }; + //! for specific for expression to preburger math translation problem struct ir_exp : public ir { ir_exp(const std::string &msg) : ir(msg) {} |