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