Entitas  0.35.0
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
EntitasException.cs
1 using System;
2 
3 namespace Entitas {
4 
5  /// Base exception used by Entitas.
6  public class EntitasException : Exception {
7 
8  public EntitasException(string message, string hint) :
9  base(hint != null ? (message + "\n" + hint) : message) {
10  }
11  }
12 }
Base exception used by Entitas.