implement script plugin command registration - issue #132
This commit is contained in:
11
SharedLibraryCore/Exceptions/PluginException.cs
Normal file
11
SharedLibraryCore/Exceptions/PluginException.cs
Normal file
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace SharedLibraryCore.Exceptions
|
||||
{
|
||||
public class PluginException : Exception
|
||||
{
|
||||
public PluginException(string message) : base(message) { }
|
||||
|
||||
public string PluginFile { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user