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. }