throw

命令 Instruction Type
Format
throw エラー throw error
Commentary
任意のエラーを発生させcatch()にエラーコードとして渡すことができます。 Cause any errors catch () you can pass as an error code.
サンプルコード Sample code
try { try (
throw "zero"; throw "zero";
} )
catch(e) catch (e)
{ (
outputs[0] = "エラー内容("+e+")"; outputs [0] = "content error (" + e +")";
} )