12 lines
233 B
C#
12 lines
233 B
C#
using System;
|
|
|
|
namespace SharedLibraryCore.Exceptions
|
|
{
|
|
public class PluginException : Exception
|
|
{
|
|
public PluginException(string message) : base(message) { }
|
|
|
|
public string PluginFile { get; set; }
|
|
}
|
|
}
|