Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

InvalidSignatureException.cs 425B

12345678910111213141516171819
  1. using System;
  2. using NUnit.Framework;
  3. using NUnit.Framework.Interfaces;
  4. namespace UnityEngine.TestTools.TestRunner
  5. {
  6. internal class InvalidSignatureException : ResultStateException
  7. {
  8. public InvalidSignatureException(string message)
  9. : base(message)
  10. {
  11. }
  12. public override ResultState ResultState
  13. {
  14. get { return ResultState.NotRunnable; }
  15. }
  16. }
  17. }