Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
EntityIsNotRetainedByOwnerException.cs
1 namespace Entitas {
2 
4 
5  public EntityIsNotRetainedByOwnerException(IEntity entity, object owner)
6  : base("'" + owner + "' cannot release " + entity + "!\n" +
7  "Entity is not retained by this object!",
8  "An entity can only be released from objects that retain it.") {
9  }
10  }
11 }
Base exception used by Entitas.