init
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user