Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
ContextEntityIndexDoesNotExistException.cs
1 namespace Entitas {
2 
4 
5  public ContextEntityIndexDoesNotExistException(IContext context, string name)
6  : base("Cannot get EntityIndex '" + name + "' from context '" +
7  context + "'!", "No EntityIndex with this name has been added.") {
8  }
9  }
10 }
Base exception used by Entitas.