一、C++异常相关的基础知识
先看这个对于项目中错误的管理,在看下面的异常介绍:http://blog.csdn.net/feiyinzilgd/article/details/6677255
基础知识,介绍的很详细:http://blog.csdn.net/TanXiangHao/article/details/3085352
把结构化异常转为C++异常:http://haohamaru.blog.163.com/blog/static/1723721372010112245835645/
二、设计良好的C++异常类
http://www.cr173.com/html/7723_1.html
http://blog.chinaunix.net/uid-20558494-id-2803062.html
http://vimory.iteye.com/blog/190030
http://u.cyzone.cn/blog/128552
三、异常处理框架
http://blog.csdn.net/coofucoo/article/details/3075414
http://www.uml.org.cn/zjjs/200906301.asp
四、异常的处理和开销
http://baiy.cn/doc/cpp/inside_exception.htm
认真看完以上文章,应该可以初步设计一个自己的异常处理框架了。