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