Files
TheVVaS-Assets/RPGCore/Runtime/ObjectModules/EventObjectModule/EventPreventedException.cs
T
2026-04-25 23:37:10 +02:00

11 lines
227 B
C#

using System;
namespace RPGCore.ObjectModules.EventObjectModule
{
public class EventPreventedException : Exception
{
public EventPreventedException(string message) : base(message)
{
}
}
}