IW4M-Admin/SharedLibraryCore/Exceptions/PluginException.cs

13 lines
248 B
C#
Raw Normal View History

using System;
namespace SharedLibraryCore.Exceptions
{
public class PluginException : Exception
{
2022-01-26 11:32:16 -05:00
public PluginException(string message) : base(message)
{
}
public string PluginFile { get; set; }
}
2022-01-26 11:32:16 -05:00
}