14 #ifndef __IPSDKIPLUTILITY_IPSDKIPLUTILITYEXCEPTION_H__ 15 #define __IPSDKIPLUTILITY_IPSDKIPLUTILITYEXCEPTION_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 // __IPSDKIPLUTILITY_IPSDKIPLUTILITYEXCEPTION_H__ #define IPSDKIPLUTILITY_API
Import/Export macro for library IPSDKIPLUtility.
Definition: IPSDKIPLUtilityExports.h:25
IPSDKIPLUtilityException()
Default constructor.
Definition: IPSDKIPLUtilityException.h:34
IPSDKIPLUtilityException(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: IPSDKIPLUtilityException.h:66
Definition of import/export macro for library.
Exception class for library IPSDKIPLUtility.
Definition: IPSDKIPLUtilityException.h:27
IPSDKIPLUtilityException(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: IPSDKIPLUtilityException.h:53
virtual ~IPSDKIPLUtilityException()
Destructor.
Definition: IPSDKIPLUtilityException.h:74
IPSDKIPLUtilityException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: IPSDKIPLUtilityException.h:41