Vixen
02b45cc4

ComponentNotFoundException

class Core/Vixen.Ecs/EcsExceptions.cs:44
csharp
public sealed class ComponentNotFoundException

An entity is alive but does not have the component that was asked for.

No guide page documents this yet — the page shows what the code says about itself.

Fields and properties (2)

  • public Entity Entity

    The entity.

  • public Type? ComponentType

    The component type that is missing.

Methods (4)

  • public ComponentNotFoundException(Entity entity, Type componentType, ComponentSignature archetype)

    Creates the exception.

  • public ComponentNotFoundException(string message)

    Creates the exception with a plain message.

  • public ComponentNotFoundException(string message, Exception innerException)

    Creates the exception with a message and a cause.

  • public ComponentNotFoundException()

    Creates the exception with no message.

Used by (3)

  • CommandBufferTestsVixen.Ecs.Tests
  • WorldVixen.Ecs
  • WorldTestsVixen.Ecs.Tests