Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
plotters
PlotterException.cxx
Go to the documentation of this file.
1
12
#include "
PlotterException.h
"
13
14
namespace
hippodraw {
15
16
PlotterException::
17
PlotterException
(
const
std::string &
type
)
18
{
19
m_message
=
type
;
20
}
21
22
PlotterException::
23
PlotterException
(
const
PlotterException
& e )
24
: exception ()
25
{
26
m_message
= e.
m_message
;
27
}
28
29
PlotterException::
30
~PlotterException
() throw ()
31
{
32
}
33
34
const
char
*
35
PlotterException::
36
what
()
const
throw ()
37
{
38
return
m_message
.c_str();
39
}
40
41
}
// namespace hippodraw
42
Generated for HippoDraw Class Library by