mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
15 lines
237 B
C++
15 lines
237 B
C++
#pragma once
|
|
|
|
namespace YaraSharp
|
|
{
|
|
public ref class ErrorUtility abstract sealed
|
|
{
|
|
private:
|
|
static String^ NiceErrorCode(int error);
|
|
|
|
public:
|
|
static void ThrowOnError(int error);
|
|
static void ThrowOnError(String^ error);
|
|
};
|
|
}
|