Excption - 图1
    key:
    fillStackTrace():将调用的栈信息存储下来
    demangle():将函数名转换

    1. #include"Exception.h"
    2. #include <stdio.h>
    3. class Bar
    4. {
    5. public:
    6. void test()
    7. {
    8. throw tinymuduo::Exception("oops");
    9. }
    10. };
    11. void foo()
    12. {
    13. Bar b;
    14. b.test();
    15. }
    16. int main()
    17. {
    18. try
    19. {
    20. foo();
    21. }
    22. catch (const tinymuduo::Exception& ex)
    23. {
    24. printf("reason: %s\n", ex.what());
    25. //错误信息
    26. printf("stack trace: %s\n", ex.stackTrace());
    27. //堆栈调用情况
    28. }
    29. }