21 lines
314 B
C
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;
|
||
|
};
|
||
|
}
|