Face Engine SDK  5.23.1
A face detection, recognition and tracking engine.
include/fsdk/Exception.h
00001 #pragma once
00002 
00003 #include <exception>
00004 
00005 #include <fsdk/Def.h>
00006 #include <fsdk/FSDKError.h>
00007 
00008 namespace fsdk {
00009 
00010     struct FSDK_API Exception {
00011         explicit Exception(fsdk::FSDKError err) noexcept;
00012 
00013         const char* what() const noexcept;
00014 
00015         fsdk::FSDKError getError() const noexcept;
00016 
00017     private:
00018         fsdk::FSDKError m_error;
00019     };
00020 } // namespace fsdk
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines