using System; namespace EcsRx.Exceptions { public class InvalidEntityException : Exception { public InvalidEntityException(string message) : base(message) { } } }