Revision: | 1.1 |
Committed: | Tue Nov 8 17:15:51 2005 UTC (19 years, 5 months ago) by afaq |
Branch: | MAIN |
CVS Tags: | DBS_0_0_3a, DBS_0_0_3, DBS_0_0_2, DBS_0_0_1, pre_DBS_0_0_1, post_dict_type_checking_merge, post_MiniPythonAPI_merged_to_trunk, pre_MiniPythonAPI_merge_to_trunk, DBS_0_0_0, vs20060320, AfterJan2006SchemaChanges_v01_00_01, AfterJan2006SchemaChanges_v01_00_00, AfterJan2006SchemaChanges, BeforeJan2006SchemaChanges, before_message_removal, preXOverChanges, HEAD |
Branch point for: | BranchForCPPWebServiceTesting |
Log Message: | Added BizLogic Exception Files |
# | Content |
---|---|
1 | #ifndef _BizLayerExcepption_hpp_included_ |
2 | #define _BizLayerExcepption_hpp_included_ |
3 | #include <string> |
4 | //File containing Exception(s) for Biz layer. |
5 | class BizLayerException { |
6 | public: |
7 | BizLayerException(); |
8 | BizLayerException(std::string); |
9 | std::string report(void); |
10 | private: |
11 | std::string message; |
12 | |
13 | }; |
14 | #endif |