mirror of
https://github.com/stellarbear/YaraSharp
synced 2026-06-08 17:36:09 +00:00
12 lines
182 B
C++
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);
|
|
};
|
|
}
|