IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
IPSDKImageFileException.h
1 // IPSDKImageFileException.h:
3 // --------------------------
4 //
14 
15 #ifndef __IPSDKIMAGEFILE_IPSDKIMAGEFILEEXCEPTION_H__
16 #define __IPSDKIMAGEFILE_IPSDKIMAGEFILEEXCEPTION_H__
17 
19 #include <IPSDKUtil/Logger/BaseException.h>
20 
21 namespace ipsdk {
22 namespace image {
23 namespace file {
24 
27 
29 {
30 public:
33 
36 
42  IPSDKImageFileException(const std::string& msg,
43  const char* functionName,
44  const char* filePath,
45  ipUInt32 lineIdx) :
46  BaseException(msg, functionName, filePath, lineIdx) {}
47 
54  IPSDKImageFileException(const std::string& msg,
55  const char* functionName,
56  const char* filePath,
57  ipUInt32 lineIdx,
58  const BaseException& exceptionFromReThrow) :
59  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
60 
67  IPSDKImageFileException(const std::string& msg,
68  const char* functionName,
69  const char* filePath,
70  ipUInt32 lineIdx,
71  const std::exception& exceptionFromReThrow) :
72  BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
73 
75  virtual ~IPSDKImageFileException() throw() {}
76 
78 
79 // methods
80 public:
81 
82 // attributes
83 protected:
84 
85 };
86 
89 
90 } // end of namespace file
91 } // end of namespace image
92 } // end of namespace ipsdk
93 
94 #endif // __IPSDKIMAGEFILE_IPSDKIMAGEFILEEXCEPTION_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
IPSDKImageFileException(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: IPSDKImageFileException.h:54
Base exception class for IPSDK library.
Definition: BaseException.h:36
#define IPSDKIMAGEFILE_API
Import/Export macro for library IPSDKImageFile.
Definition: IPSDKImageFileExports.h:27
IPSDKImageFileException(const std::string &msg, const char *functionName, const char *filePath, ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: IPSDKImageFileException.h:42
Definition of import/export macro for library.
IPSDKImageFileException()
Default constructor.
Definition: IPSDKImageFileException.h:35
IPSDKImageFileException(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: IPSDKImageFileException.h:67
Exception class for library IPSDKImageFile.
Definition: IPSDKImageFileException.h:28
virtual ~IPSDKImageFileException()
Destructor.
Definition: IPSDKImageFileException.h:75
uint32_t ipUInt32
Base types definition.
Definition: BaseTypes.h:53