FactoryException.h
Go to the documentation of this file.
1 /* -*- mode: c++ -*- */
2 
14 #ifndef _FactoryException_H_
15 #define _FactoryException_H_
16 
17 #include "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 
34 class MDL_HIPPOPLOT_API FactoryException : public std::exception
35 {
36 private:
37 
39  std::string m_type;
40 
41 public:
42 
48 
51  FactoryException ( const std::string & type );
52 
56  virtual ~FactoryException () throw ();
57 
59  char const * what () const throw ();
60 
61 };
62 
63 } // namespace hippodraw
64 
65 #endif // _FactoryException_H_

Generated for HippoDraw Class Library by doxygen