You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
314 B

#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;
};
}