summaryrefslogtreecommitdiff
path: root/include/chill_error.hh
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-09-21 22:35:47 -0600
committerTuowen Zhao <ztuowen@gmail.com>2016-09-21 22:35:47 -0600
commitab016596602a4c6bdc27adf01c308b325af221f0 (patch)
tree4e86bfcf1f38fb00cc58082d540dc3570e0f126b /include/chill_error.hh
parent6983c09937baac3ffb7d3a45c3c5009c0eba7e6c (diff)
downloadchill-ab016596602a4c6bdc27adf01c308b325af221f0.tar.gz
chill-ab016596602a4c6bdc27adf01c308b325af221f0.tar.bz2
chill-ab016596602a4c6bdc27adf01c308b325af221f0.zip
something that only builds ...
Diffstat (limited to 'include/chill_error.hh')
-rw-r--r--include/chill_error.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/chill_error.hh b/include/chill_error.hh
index 88e49fc..c5601ae 100644
--- a/include/chill_error.hh
+++ b/include/chill_error.hh
@@ -21,4 +21,8 @@ struct ir_exp_error: public ir_error {
ir_exp_error(const std::string &msg): ir_error(msg){}
};
+struct omega_error: public std::runtime_error {
+ omega_error(const std::string &msg): std::runtime_error(msg){}
+};
+
#endif