Javascript v8 object to string exceptions improvement

This commit is contained in:
William S Fulton 2022-09-18 13:12:51 +01:00
commit d32943b2a9
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ catch(error){
if(error == -1) {
console.log("t.hosed() did not throw");
} else {
console.log("successfully caught throw in Test::hosed() :" + error + " " + error.code + " " + error.msg);
console.log("successfully caught throw in Test::hosed() :" + error);
}
}