14 lines
319 B
C#
14 lines
319 B
C#
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;
|
|
}
|
|
}
|
|
} |