Revision: | 1.1 |
Committed: | Mon Oct 31 22:10:36 2005 UTC (19 years, 6 months ago) by afaq |
Branch point for: | v00, MAIN |
Log Message: | Initial revision |
# | User | Rev | Content |
---|---|---|---|
1 | afaq | 1.1 | #ifndef _ObjectLayerExcepption_hpp_included_ |
2 | #define _ObjectLayerExcepption_hpp_included_ | ||
3 | #include <string> | ||
4 | //File containing Exception(s) for Object layer. | ||
5 | class ObjectLayerException { | ||
6 | public: | ||
7 | ObjectLayerException(); | ||
8 | ObjectLayerException(std::string); | ||
9 | std::string report(void); | ||
10 | private: | ||
11 | std::string message; | ||
12 | |||
13 | }; | ||
14 | #endif |