Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

qt unhandled exception handler

int main() try
{
  ...
}
catch (std::exception & e)
{
  // do something with what...
}
catch (...)
{
  // someone threw something undecypherable
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #qt #unhandled #exception #handler
ADD COMMENT
Topic
Name
2+2 =