码迷,mamicode.com
首页 > 编程语言 > 详细

javascript

时间:2016-01-30 13:40:28      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

1. Error 对象      EvalError    RangeError   TypeError   ReferenceError  

try{
    notExists();
}
catch(e){
    alert(e.name+‘:‘+e.message);
}
try{
    var num =4
    if(num!=0)
        throw new Error(‘why me?‘);
}catch(e){
alert(‘in catch:‘+e.name+‘:‘+e.message);
}finally{
alert(‘in finally‘);

}
function myError(msg){
    this.name = ‘God is ‘
    this.message = msg||‘default self-defined error message‘;
}
myError.prototype = Object.create(Error.prototype);
myError.prototype.constructor = myError;
try {
    throw new myError();
}
catch(e){
    console.log(e.name +‘:‘+e.message);
}

 

javascript

标签:

原文地址:http://www.cnblogs.com/goodearth/p/5170841.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!