PkmnLibSharp/PkmnLibSharp/Utilities/NativeException.cs

11 lines
228 B
C#
Raw Normal View History

2020-05-02 20:58:08 +00:00
using System;
2020-05-04 15:54:34 +00:00
namespace PkmnLibSharp.Utilities
2020-05-02 20:58:08 +00:00
{
public class NativeException : Exception
{
public NativeException(string library, string message) : base($"[{library}] - '{message}'")
{
}
}
}