14 #ifndef __IPSDKIPLCLASSIFICATION_IPSDKIPLCLASSIFICATIONEXCEPTION_H__ 15 #define __IPSDKIPLCLASSIFICATION_IPSDKIPLCLASSIFICATIONEXCEPTION_H__ 18 #include <IPSDKUtil/Logger/BaseException.h> 42 const char* functionName,
54 const char* functionName,
58 BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
67 const char* functionName,
70 const std::exception& exceptionFromReThrow) :
71 BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
93 #endif // __IPSDKIPLCLASSIFICATION_IPSDKIPLCLASSIFICATIONEXCEPTION_H__
#define IPSDKIPLCLASSIFICATION_API
Import/Export macro for library IPSDKIPLClassification.
Definition: IPSDKIPLClassificationExports.h:25
IPSDKIPLClassificationException()
Default constructor.
Definition: IPSDKIPLClassificationException.h:34
IPSDKIPLClassificationException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: IPSDKIPLClassificationException.h:41
Definition of import/export macro for library.
IPSDKIPLClassificationException(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: IPSDKIPLClassificationException.h:66
virtual ~IPSDKIPLClassificationException()
Destructor.
Definition: IPSDKIPLClassificationException.h:74
IPSDKIPLClassificationException(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: IPSDKIPLClassificationException.h:53
Exception class for library IPSDKIPLClassification.
Definition: IPSDKIPLClassificationException.h:27