Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
EntityIsNotDestroyedException.cs
1 namespace Entitas {
2 
4 
5  public EntityIsNotDestroyedException(string message)
6  : base(message + "\nEntity is not destroyed yet!",
7  "Did you manually call entity.Release(context) yourself? " +
8  "If so, please don't :)") {
9  }
10  }
11 }
Base exception used by Entitas.