Fennel: /home/pub/open/dev/fennel/db/DataFormatExcn.h Source File (original) (raw)
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 #ifndef Fennel_DataFormatExcn_Included 00025 #define Fennel_DataFormatExcn_Included 00026 00027 #include "fennel/common/FennelExcn.h" 00028 #include "fennel/common/FennelResource.h" 00029 00030 using namespace std; 00031 00032 FENNEL_BEGIN_NAMESPACE 00033 00037 class FENNEL_DB_EXPORT DataFormatExcn 00038 : public FennelExcn 00039 { 00040 public: 00044 explicit DataFormatExcn() 00045 : FennelExcn(FennelResource::instance().incompatibleDataFormat()) 00046 { 00047 } 00048 }; 00049 00050 FENNEL_END_NAMESPACE 00051 00052 #endif 00053 00054