C与C++中的异常处理17[14]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 taodm 的 blog

void structured_exception::install() throw()

   {

   _set_se_translator(my_translator);

   }

 

char const *structured_exception::what() const throw()

   {

   return "unspecified structured exception";

   }

 

void const *structured_exception::where() const throw()

   {

   return address_;

   }

 

//

//  access_violation::

//

access_violation::access_violation

      (exception_pointers const &info) throw()

      : structured_exception(info)

   {

   }

本文关键:异常
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top