Files
2026-07-09 21:33:33 +02:00

16 lines
473 B
C#

using System;
namespace VOID.Generic.Objects.Unit.Actions.Exceptions
{
public class UnitActionErrorException : Exception
{
public readonly AbstractAction action;
public readonly UnitActionErrorType unitActionErrorType;
public UnitActionErrorException(AbstractAction action, UnitActionErrorType unitActionErrorType)
{
this.action = action;
this.unitActionErrorType = unitActionErrorType;
}
}
}