IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IPSDKBaseDataException.h
1 // IPSDKBaseDataException.h:
3 // -------------------------
4 //
14 
15 #ifndef __IPSDKBASEDATA_IPSDKBASEDATAEXCEPTION_H__
16 #define __IPSDKBASEDATA_IPSDKBASEDATAEXCEPTION_H__
17 
19 #include <IPSDKUtil/Logger/BaseException.h>
20 
21 namespace ipsdk {
22 
25 
27 {
28 public:
31 
34 
40  IPSDKBaseDataException(const std::string& msg,
41  const char* functionName,
42  const char* filePath,
43  ipUInt32 lineIdx) :
44  BaseException(msg, functionName, filePath, lineIdx) {}
45 
52  IPSDKBaseDataException(const std::string& msg,
53  const char* functionName,
54  const char* filePath,
55  ipUInt32 lineIdx,
56  const BaseException& exceptionFromReThrow) :
57  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
58 
65  IPSDKBaseDataException(const std::string& msg,
66  const char* functionName,
67  const char* filePath,
68  ipUInt32 lineIdx,
69  const std::exception& exceptionFromReThrow) :
70  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
71 
73  virtual ~IPSDKBaseDataException() throw() {}
74 
76 
77 // methods
78 public:
79 
80 // attributes
81 protected:
82 
83 };
84 
87 
88 } // end of namespace ipsdk
89 
90 #endif // __IPSDKBASEDATA_IPSDKBASEDATAEXCEPTION_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
IPSDKBaseDataException(const std::string &msg, const char *functionName, const char *filePath, ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: IPSDKBaseDataException.h:40
Base exception class for IPSDK library.
Definition: BaseException.h:36
Definition of import/export macro for library.
IPSDKBaseDataException(const std::string &msg, const char *functionName, const char *filePath, ipUInt32 lineIdx, const BaseException &exceptionFromReThrow)
Constructor for rethrow of isdk::BaseException with message and source code location.
Definition: IPSDKBaseDataException.h:52
IPSDKBaseDataException()
Default constructor.
Definition: IPSDKBaseDataException.h:33
virtual ~IPSDKBaseDataException()
Destructor.
Definition: IPSDKBaseDataException.h:73
IPSDKBaseDataException(const std::string &msg, const char *functionName, const char *filePath, ipUInt32 lineIdx, const std::exception &exceptionFromReThrow)
Constructor for rethrow of std::exception with message and source code location.
Definition: IPSDKBaseDataException.h:65
#define IPSDKBASEDATA_API
Import/Export macro for library IPSDKUtil.
Definition: IPSDKBaseDataExports.h:27
Exception class for library IPSDKBaseData.
Definition: IPSDKBaseDataException.h:26
uint32_t ipUInt32
Base types definition.
Definition: BaseTypes.h:53