IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IPSDKIPLShapeAnalysisException.h
1 // IPSDKIPLShapeAnalysisException.h:
3 // ---------------------------------
4 //
13 
14 #ifndef __IPSDKIPLSHAPEANALYSIS_IPSDKIPLSHAPEANALYSISEXCEPTION_H__
15 #define __IPSDKIPLSHAPEANALYSIS_IPSDKIPLSHAPEANALYSISEXCEPTION_H__
16 
18 #include <IPSDKUtil/Logger/BaseException.h>
19 
20 namespace ipsdk {
21 namespace imaproc {
22 namespace shape {
23 namespace analysis {
24 
27 
29 {
30 public:
33 
36 
42  IPSDKIPLShapeAnalysisException(const std::string& msg,
43  const char* functionName,
44  const char* filePath,
45  ipsdk::ipUInt32 lineIdx) :
46  BaseException(msg, functionName, filePath, lineIdx) {}
47 
54  IPSDKIPLShapeAnalysisException(const std::string& msg,
55  const char* functionName,
56  const char* filePath,
57  ipsdk::ipUInt32 lineIdx,
58  const BaseException& exceptionFromReThrow) :
59  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
60 
67  IPSDKIPLShapeAnalysisException(const std::string& msg,
68  const char* functionName,
69  const char* filePath,
70  ipsdk::ipUInt32 lineIdx,
71  const std::exception& exceptionFromReThrow) :
72  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
73 
75  virtual ~IPSDKIPLShapeAnalysisException() throw() {}
76 
78 
79 // methods
80 public:
81 
82 // attributes
83 protected:
84 
85 };
86 
89 
90 } // end of namespace analysis
91 } // end of namespace shape
92 } // end of namespace imaproc
93 } // end of namespace ipsdk
94 
95 #endif // __IPSDKIPLSHAPEANALYSIS_IPSDKIPLSHAPEANALYSISEXCEPTION_H__
IPSDKIPLShapeAnalysisException()
Default constructor.
Definition: IPSDKIPLShapeAnalysisException.h:35
IPSDKIPLShapeAnalysisException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: IPSDKIPLShapeAnalysisException.h:42
virtual ~IPSDKIPLShapeAnalysisException()
Destructor.
Definition: IPSDKIPLShapeAnalysisException.h:75
Definition of import/export macro for library.
IPSDKIPLShapeAnalysisException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx, const BaseException &exceptionFromReThrow)
Constructor for rethrow of ipsdk::BaseException with message and source code location.
Definition: IPSDKIPLShapeAnalysisException.h:54
Exception class for library IPSDKIPLShapeAnalysis.
Definition: IPSDKIPLShapeAnalysisException.h:28
#define IPSDKIPLSHAPEANALYSIS_API
Import/Export macro for library IPSDKIPLShapeAnalysis.
Definition: IPSDKIPLShapeAnalysisExports.h:25
IPSDKIPLShapeAnalysisException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx, const std::exception &exceptionFromReThrow)
Constructor for rethrow of std::exception with message and source code location.
Definition: IPSDKIPLShapeAnalysisException.h:67
uint32_t ipUInt32