Files
stellarbear-YaraSharp/YaraSharp/Exceptions.h
T
2018-04-08 16:37:39 +03:00

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