在JavaScript中捕获特定的异常

时间:2014-10-14 10:05:53

标签: javascript exception-handling

我知道使用以下块,它可以捕获Exception

try{
    // Code
}catch(err){
    alert(err.message);
}

说,我想抓住NumberFormatException。如何使用Exception抓住特定的JavaScript? (我实际上想要抓住NumberFormatException中明确定义的InterruptedExceptionConnectExceptionJava

1 个答案:

答案 0 :(得分:3)

Javascript没有标准的方法来执行此操作。

try{
    // Code
}catch(err){
    if(err instanceof SomeException){
        alert(err.message);
    }
}

Firefox有extension,我觉得这很好,应该更标准。