Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
EntityDoesNotHaveComponentException.cs
1 namespace Entitas {
2 
4 
5  public EntityDoesNotHaveComponentException(int index, string message, string hint)
6  : base(message + "\nEntity does not have a component at index " + index + "!", hint) {
7  }
8  }
9 }
Base exception used by Entitas.