mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
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; }
|
|
}
|
|
} |