Nymph  v1.5.2
Flow-Based Data Processing Framework
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 
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 
25  {
26  }
27 
28  const char* KTException::what() const throw ()
29  {
30  return fException.c_str();
31  }
32 
33 }
std::string fException
Definition: KTException.hh:35
STL namespace.
virtual const char * what() const
Definition: KTException.cc:28