15 lines
No EOL
246 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |