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