Page MenuHomec4science

Exception.hpp
No OneTemporary

File Metadata

Created
Tue, May 28, 12:51

Exception.hpp

#ifndef EXCEPTIONDEF
#define EXCEPTIONDEF
#include <string>
class Exception
{
private:
std::string mTag, mProblem;
public:
Exception(std::string tagString, std::string probString);
void PrintDebug() const;
};
#endif //EXCEPTIONDEF

Event Timeline