MDStressLab++
Main Page
Classes
Files
Examples
File List
File Members
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
10
Exception::Exception
(
const
std::string& _msg) : msg(_msg){}
11
12
const
char
*
Exception::what
()
const
13
{
14
return
(this->
msg
).c_str();
15
}
16
17
Exception::~Exception
() {
18
// TODO Auto-generated destructor stub
19
}
20
Exception::Exception
Exception(const std::string &)
Definition:
Exception.cpp:10
Exception::~Exception
virtual ~Exception()
Definition:
Exception.cpp:17
Exception::what
virtual const char * what() const
Definition:
Exception.cpp:12
Exception::msg
std::string msg
Definition:
Exception.h:16
Exception.h
src
Exception.cpp
Generated by
1.8.11