Page MenuHomec4science

Exception.cpp
No OneTemporary

File Metadata

Created
Tue, Jun 18, 14:20

Exception.cpp

#include <iostream>
#include "Exception.hpp"
//Constructor
Exception::Exception(std::string tagString,
std::string probString)
{
mTag = tagString;
mProblem = probString;
}
void Exception::PrintDebug() const
{
std::cerr << "** Error ("<<mTag<<") **\n";
std::cerr << "Problem: " << mProblem << "\n\n";
}

Event Timeline