Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
EntityIsNotEnabledException.cs
1 namespace Entitas {
2 
4 
5  public EntityIsNotEnabledException(string message)
6  : base(message + "\nEntity is not enabled!",
7  "The entity has already been destroyed. " +
8  "You cannot modify destroyed entities.") {
9  }
10  }
11 }
Base exception used by Entitas.