PkmnLibSharp/PkmnLibSharp/NativeException.cs

11 lines
218 B
C#

using System;
namespace PkmnLibSharp
{
public class NativeException : Exception
{
public NativeException(string library, string message) : base($"[{library}] - '{message}'")
{
}
}
}