This commit is contained in:
2026-04-25 23:37:10 +02:00
commit 19d6bd934a
476 changed files with 9198 additions and 0 deletions
@@ -0,0 +1,14 @@
using System;
namespace RPGCore.ObjectModules.ActionObjectModule
{
public class ActionErrorException : Exception
{
public readonly BaseAction action;
public ActionErrorException(BaseAction action, string message) : base(message)
{
this.action = action;
}
}
}