当前位置: 首页>>代码示例>>C++>>正文


C++ Exception::get_errorMsg方法代码示例

本文整理汇总了C++中Exception::get_errorMsg方法的典型用法代码示例。如果您正苦于以下问题:C++ Exception::get_errorMsg方法的具体用法?C++ Exception::get_errorMsg怎么用?C++ Exception::get_errorMsg使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Exception的用法示例。


在下文中一共展示了Exception::get_errorMsg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: error_logger

///////////////////////////////////////////////////////////////////////////////
/// @fn void error_logger( const Exception& e )
/// @brief Writes e to a file and also to the screen.
/// @pre e exists.
/// @param const Exception& e - The Exception to write to file and screen.
/// @post Writes e to a file and also to the screen.
/// @return None.
///////////////////////////////////////////////////////////////////////////////
void error_logger( const Exception& e )
{
    // Store the error message for output to file and screen.
    string msg = "Exception: " + e.get_errorMsg();

    // Show the message to the screen.
    cout << msg << endl;

    return;
}
开发者ID:umairsajid,项目名称:my-random-cpp-libraries,代码行数:18,代码来源:driver.cpp

示例2: error_logger

///////////////////////////////////////////////////////////////////////////////
/// @fn void error_logger( const Exception& e )
/// @brief Writes e to a file and also to the screen.
/// @pre e exists.
/// @param const Exception& e - The Exception to write to file and screen.
/// @post Writes e to a file and also to the screen.
/// @return None.
///////////////////////////////////////////////////////////////////////////////
void error_logger( const Exception& e ) 
{
  //Create/open the log file.
  File elog( "errorlog.txt" );
  
  //Store the error message for output to file and screen.
  string msg = "Exception " + int_to_str( e.get_errorCode() ) + ": " + e.get_errorMsg();
  
  //Insert the error at the end of the file.
  elog.insert_line( elog.get_num_lines(), msg );
  
  //Save the file, then close it.
  elog.close(true);
  
  //Show the message to the screen.
  cout << msg << endl;

  return;
}
开发者ID:umairsajid,项目名称:my-random-cpp-libraries,代码行数:27,代码来源:driver.cpp


注:本文中的Exception::get_errorMsg方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。