Created
February 8, 2020 05:10
-
-
Save Jacob-Tate/b9407e726fa91e55b1127557dc81ff67 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdexcept> | |
class CrashHandlerException : public std::runtime_error | |
{ | |
public: | |
explicit inline CrashHandlerException(const std::string& error_desc) | |
: std::runtime_error(error_desc) {} | |
}; | |
class CrashHandlerFileCreate : public CrashHandlerException | |
{ | |
public: | |
explicit inline CrashHandlerFileCreate(const std::string& error_desc) | |
: CrashHandlerException(error_desc) {} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment