server-master/srcs/WingsAPI.Plugins/Exceptions/PluginException.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
246 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System;
namespace WingsAPI.Plugins.Exceptions
{
public class PluginException : Exception
{
public PluginException(string message) : base(message)
{
}
}
}