Files
2019-10-09 10:37:23 +01:00

12 lines
182 B
C++

#pragma once
namespace YaraSharp
{
public ref class YSException abstract sealed
{
public:
static void ThrowOnError(int error);
static void ThrowOnError(String^ error);
};
}