IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IPSDKImageProcessingException.h
1 // IPSDKImageProcessingException.h:
3 // --------------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEPROCESSING_IPSDKIMAGEPROCESSINGEXCEPTION_H__
16 #define __IPSDKIMAGEPROCESSING_IPSDKIMAGEPROCESSINGEXCEPTION_H__
17 
19 #include <IPSDKUtil/Logger/BaseException.h>
20 
21 namespace ipsdk {
22 namespace imaproc {
23 
26 
28 {
29 public:
32 
35 
41  IPSDKImageProcessingException(const std::string& msg,
42  const char* functionName,
43  const char* filePath,
44  ipsdk::ipUInt32 lineIdx) :
45  BaseException(msg, functionName, filePath, lineIdx) {}
46 
53  IPSDKImageProcessingException(const std::string& msg,
54  const char* functionName,
55  const char* filePath,
56  ipsdk::ipUInt32 lineIdx,
57  const BaseException& exceptionFromReThrow) :
58  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
59 
66  IPSDKImageProcessingException(const std::string& msg,
67  const char* functionName,
68  const char* filePath,
69  ipsdk::ipUInt32 lineIdx,
70  const std::exception& exceptionFromReThrow) :
71  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
72 
74  virtual ~IPSDKImageProcessingException() throw() {}
75 
77 
78 // methods
79 public:
80 
81 // attributes
82 protected:
83 
84 };
85 
88 
89 } // end of namespace imaproc
90 } // end of namespace ipsdk
91 
92 #endif // __IPSDKIMAGEPROCESSING_IPSDKIMAGEPROCESSINGEXCEPTION_H__
virtual ~IPSDKImageProcessingException()
Destructor.
Definition: IPSDKImageProcessingException.h:74
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
IPSDKImageProcessingException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: IPSDKImageProcessingException.h:41
Base exception class for IPSDK library.
Definition: BaseException.h:36
Definition of import/export macro for library.
IPSDKImageProcessingException(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: IPSDKImageProcessingException.h:66
IPSDKImageProcessingException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx, const BaseException &exceptionFromReThrow)
Constructor for rethrow of isdk::BaseException with message and source code location.
Definition: IPSDKImageProcessingException.h:53
#define IPSDKIMAGEPROCESSING_API
Import/Export macro for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingExports.h:25
Exception class for library IPSDKImageProcessing.
Definition: IPSDKImageProcessingException.h:27
IPSDKImageProcessingException()
Default constructor.
Definition: IPSDKImageProcessingException.h:34
uint32_t ipUInt32
Base types definition.
Definition: BaseTypes.h:53