Mirror of Svelto.ECS because we're a fan of it
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

17 строки
372B

  1. using System;
  2. namespace Svelto.ECS
  3. {
  4. public class TypeSafeDictionaryException : Exception
  5. {
  6. public TypeSafeDictionaryException(string message, Exception exception) :
  7. base(message, exception)
  8. {
  9. }
  10. public TypeSafeDictionaryException(string message) :
  11. base(message)
  12. {
  13. }
  14. }
  15. }