Face Engine SDK  5.21.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Exception.h
1 #pragma once
2 
3 #include <exception>
4 
5 #include <fsdk/Def.h>
6 #include <fsdk/FSDKError.h>
7 
8 namespace fsdk {
9 
11  explicit Exception(fsdk::FSDKError err) noexcept;
12 
13  const char* what() const noexcept;
14 
15  fsdk::FSDKError getError() const noexcept;
16 
17  private:
18  fsdk::FSDKError m_error;
19  };
20 } // namespace fsdk
#define FSDK_API
Dummy.
Definition: Def.h:27
Common SDK error codes.
Common SDK definitions.
Definition: Exception.h:10
FSDKError
Common SDK error codes.
Definition: FSDKError.h:17