MDStressLab++
Loading...
Searching...
No Matches
Exception.cpp
Go to the documentation of this file.
1/*
2 * Exception.cpp
3 *
4 * Created on: Nov 10, 2019
5 * Author: Nikhil
6 */
7
8#include "Exception.h"
9
10Exception::Exception(const std::string& _msg) : msg(_msg){}
11
12const char* Exception::what() const
13{
14 return (this->msg).c_str();
15}
16
18 // TODO Auto-generated destructor stub
19}
20
virtual ~Exception()
Definition Exception.cpp:17
virtual const char * what() const
Definition Exception.cpp:12
Exception(const std::string &)
Definition Exception.cpp:10
std::string msg
Definition Exception.h:16