Add runtime_error support, for throwing a normal std::exception. Also, move bootstrap for Dynamic_Object into its proper place.

This commit is contained in:
Jason Turner
2009-09-19 12:15:17 +00:00
parent b0041217b0
commit 6a47846b84
4 changed files with 17 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
try {
throw(runtime_error("error"))
}
catch(e) {
print(e.what())
}