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