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