-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Error Handling
Lingdong Huang edited this page Feb 19, 2020
·
5 revisions
姑妄行此。
嗚呼。「「滅頂」」之禍。曰「「覆巢之下。安有完卵」」
如事不諧。豈「「虛指」」之禍歟。名之曰「禍」。
夫「禍」之「「名」」。書之。
夫「禍」之「「文」」。書之。
夫「禍」之「「蹤」」。書之。
吾有一言。曰「「本無此物。奈何用之」」。書之。
豈「「文法」」之禍歟。名之曰「禍」。
吾有一言。曰「「不合文法。不通之甚」」。書之。
豈「「異類」」之禍歟。
吾有一言。曰「「物各其類。豈可混同」」。書之。
豈「「滅頂」」之禍歟。
吾有一言。曰「「嗚呼哀哉。伏维尚飨」」。書之。
不知何禍歟。名之曰「奇禍」。
吾有一言。曰「「人坐家中。禍從天降」」。書之。
乃作罷。
Which is roughly equivalent to this JavaScript:
try {
var e = new Error();
e.name = "滅頂";
e.message = "覆巢之下。安有完卵";
throw e;
} catch(e) {
if (e.name == "ReferenceError"){
console.log(e.name);
console.log(e.message);
console.log(e.stack);
console.log("本無此物。奈何用之")
}else if (e.name == "SyntaxError"){
console.log("不合文法。不通之甚")
}else if (e.name == "TypeError"){
console.log("物各其類。豈可混同")
}else if (e.name == "滅頂"){
console.log("嗚呼哀哉。伏维尚飨")
}else{
console.log("人坐家中。禍從天降")
}
}
Error messages are optional and can be omitted, e.g.
嗚呼。「「滅頂」」之禍。
which is also fine, equivalent to
var e = new Error();
e.name = "滅頂";
throw e;
Built-in error types are 文法
(SyntaxError), 逾界
(RangeError), 異類
(TypeError), and 虛指
(ReferenceError).
If you do not need to catch the errors, you can do:
姑妄行此。
嗚呼。「「無足輕重」」之禍。
如事不諧乃作罷。
Which roughly equals to:
try {
var e = new Error();
e.name = "無足輕重";
throw e;
} catch(_) {
}
You can also do this to catch any error:
姑妄行此。
嗚呼。「「事不關心」」之禍。
如事不諧。不知何禍歟。名之曰「禍」。夫「禍」之「「名」」。書之。乃作罷。
Which roughly equals to:
try {
var e = new Error();
e.name = "事不關心";
throw e;
} catch(e) {
console.log(e.name);
}
You can see details about the usage in ./examples/try.wy
.