SkillAgentSearch skills...

StackWalkerExeption

Stack trace in C++

Install / Use

/learn @shadepulse/StackWalkerExeption
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

StackWalkerExeption

Stack trace in C++

This librery is using StackWalker and adds functionality to access the stack trace form the exception after it is thrown.

Usage

Add Exception.h and Exception.cpp after adding StackWalker librery to your project and include the header file.

  #include "Exception.h"
  
  try {
       throw Exception("Example exception")
  } catch(Exception& ex) {
       cout << ex.what() << endl;
       cout << ex.getStackTrace() << endl;
  }

It is still work in progress. More feachers will be added and hopefully GCC suport on windows and linux.

View on GitHub
GitHub Stars7
CategoryDevelopment
Updated3y ago
Forks2

Languages

C++

Security Score

50/100

Audited on Aug 19, 2022

No findings