2023-05-12 10:25:25 +05:30

21 lines
314 B
C++

#pragma once
#include <exception>
#include <fsdk/FSDKError.h>
#include <fsdk/Def.h>
namespace fsdk {
struct FSDK_API Exception {
explicit Exception(fsdk::FSDKError err) noexcept;
const char* what() const noexcept;
fsdk::FSDKError getError() const noexcept;
private:
fsdk::FSDKError m_error;
};
}