Entitas  0.40.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
MatcherException.cs
1 using System;
2 
3 namespace Entitas {
4 
5  public class MatcherException : Exception {
6  public MatcherException(int indices) : base(
7  "matcher.indices.Length must be 1 but was " + indices) {
8  }
9  }
10 }