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