|
123456789101112 |
- using System;
-
- namespace Svelto.ECS.Internal
- {
- class EntityGroupNotFoundException : Exception
- {
- public EntityGroupNotFoundException(uint groupId, Type type)
- : base("entity group not found ".FastConcat(type.ToString()))
- {
- }
- }
- }
|