Page MenuHomec4science

Exception.hpp
No OneTemporary

File Metadata

Created
Mon, May 20, 18:58

Exception.hpp

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

Event Timeline