PlotterException.h
Go to the documentation of this file.
1 /* -*- mode: c++ -*- */
2 
14 #ifndef _PlotterException_H_
15 #define _PlotterException_H_
16 
17 #include "pattern/libhippo.h"
18 
19 #include <exception>
20 #include <string>
21 
22 #ifdef _MSC_VER
23 #include "msdevstudio/MSconfig.h"
24 #endif
25 
26 namespace hippodraw {
27 
33 class MDL_HIPPOPLOT_API PlotterException : public std::exception
34 {
35 private:
36 
38  std::string m_message;
39 
40 public:
41 
44  PlotterException ( const std::string & message );
45 
52 
56  virtual ~PlotterException () throw ();
57 
61  virtual const char * what () const throw ();
62 
63 };
64 
65 } // namespace hippodraw
66 
67 #endif // _PlotterException_H_

Generated for HippoDraw Class Library by doxygen