# segvcatch **Repository Path**: yahdengchai/segvcatch ## Basic Information - **Project Name**: segvcatch - **Description**: Automatically exported from code.google.com/p/segvcatch - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # segvcatch This is a crossplatform C++ library designed to convert a hardware exceptions, such as segmentation fault, or floating point errors, into a software language exceptions, which can be handled later with a try/catch construction. Other words, it's a crossplatform structured exception handling (SEH). For example, this code is working fine: ```c++ try { *(int*) 0 = 0; } catch (std::exception& e) { std::cerr << "Exception catched : " << e.what() << std::endl; } ```