Face Engine SDK 5.25.0
A face detection, recognition and tracking engine.
Loading...
Searching...
No Matches
Exception.h
1#pragma once
2
3#include <exception>
4
5#include <fsdk/Def.h>
6#include <fsdk/FSDKError.h>
7
8namespace 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
SDK namespace.
Definition IAGSEstimator.h:8
FSDKError
Common SDK error codes.
Definition FSDKError.h:17
Definition Exception.h:10