Mirror of Svelto.ECS because we're a fan of it
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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