Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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