namespace Connected.Entities { public static class EntityExceptions { public static InvalidCastException EntityCastException(Type componentType, Type entityType) { return new InvalidCastException($"{SR.ErrEntityCreate} ({componentType.Name}->{entityType.Name})"); } } }