13 lines
248 B
C#
Raw Permalink Normal View History

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