Nymph
v1.5.2
Flow-Based Data Processing Framework
Library
Utility
KTException.cc
Go to the documentation of this file.
1
/*
2
* KTException.cc
3
*
4
* Created on: Feb 25, 2014
5
* Author: nsoblath
6
*/
7
8
#include "
KTException.hh
"
9
10
namespace
Nymph
11
{
12
13
KTException::KTException
() :
14
std
::exception(),
15
fException(
""
)
16
{
17
}
18
KTException::KTException
(
const
KTException
& an_exception ) :
19
std
::exception(),
20
fException
( an_exception.
fException
)
21
{
22
}
23
24
KTException::~KTException
() throw ()
25
{
26
}
27
28
const
char
*
KTException::what
()
const
throw ()
29
{
30
return
fException
.c_str();
31
}
32
33
}
Nymph::KTException::KTException
KTException()
Definition:
KTException.cc:13
Nymph::KTException::fException
std::string fException
Definition:
KTException.hh:35
std
STL namespace.
Nymph::KTException::what
virtual const char * what() const
Definition:
KTException.cc:28
KTException.hh
Nymph::KTException
Definition:
KTException.hh:19
Nymph
Definition:
KTApplication.cc:21
Nymph::KTException::~KTException
~KTException()
Definition:
KTException.cc:24
Generated by
1.8.13