14 #ifndef __SAMPLE_KMEANS_SAMPLE_KMEANSEXCEPTION_H__ 15 #define __SAMPLE_KMEANS_SAMPLE_KMEANSEXCEPTION_H__ 18 #include <IPSDKUtil/Logger/BaseException.h> 41 const char* functionName,
53 const char* functionName,
57 BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
66 const char* functionName,
69 const std::exception& exceptionFromReThrow) :
70 BaseException(msg, functionName, filePath, lineIdx, exceptionFromReThrow) {}
91 #endif // __SAMPLE_KMEANS_SAMPLE_KMEANSEXCEPTION_H__ Sample_KMeansException(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: Sample_KMeansException.h:65
Exception class for executable Sample_KMeans.
Definition: Sample_KMeansException.h:26
Sample_KMeansException(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: Sample_KMeansException.h:52
Definition of import/export macro for library.
#define SAMPLE_KMEANS_API
Import/Export macro for library Sample_KMeans.
Definition: Sample_KMeansExports.h:25
Sample_KMeansException()
Default constructor.
Definition: Sample_KMeansException.h:33
virtual ~Sample_KMeansException()
Destructor.
Definition: Sample_KMeansException.h:73
Sample_KMeansException(const std::string &msg, const char *functionName, const char *filePath, ipsdk::ipUInt32 lineIdx)
Constructor with message and source code location.
Definition: Sample_KMeansException.h:40