本文整理汇总了C++中Exception::line方法的典型用法代码示例。如果您正苦于以下问题:C++ Exception::line方法的具体用法?C++ Exception::line怎么用?C++ Exception::line使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Exception
的用法示例。
在下文中一共展示了Exception::line方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: translate_exception
static void translate_exception(const Exception &e)
{
stringstream s;
s << endl << e.file() << "(" << e.line() << "): " << e.msg();
BOOST_ERROR(s.str().c_str());
for(const Exception &ex: e.causes())
translate_exception(ex);
}
示例2:
QDebug operator<<(QDebug debug, const Exception &exception)
{
debug.nospace() << "Exception: " << exception.type() << "\n"
"Function: " << exception.function() << "\n"
"File: " << exception.file() << "\n"
"Line: " << exception.line() << "\n";
if (!exception.description().isEmpty())
debug.nospace() << exception.description();
if (!exception.backTrace().isEmpty())
debug.nospace() << exception.backTrace();
return debug.space();
}
示例3: parseException
bool DigiDoc::parseException( const Exception &e, QStringList &causes,
Exception::ExceptionCode &code, int &ddocError )
{
causes << QString( "%1:%2 %3").arg( QFileInfo(from(e.file())).fileName() ).arg( e.line() ).arg( from(e.msg()) );
if( e.code() & Exception::DDocError )
ddocError = e.code() & ~Exception::DDocError;
switch( e.code() )
{
case Exception::CertificateRevoked:
case Exception::CertificateUnknown:
case Exception::OCSPTimeSlot:
case Exception::OCSPRequestUnauthorized:
case Exception::PINCanceled:
case Exception::PINFailed:
case Exception::PINIncorrect:
case Exception::PINLocked:
code = e.code();
default: break;
}
Q_FOREACH( const Exception &c, e.causes() )
if( !parseException( c, causes, code, ddocError ) )
return false;
return true;
}
示例4: f
Exception(const Exception& e) : std::runtime_error(e.what()), f(e.file()), l(e.line()), ep(e.ep) {}