InvalidSignatureException.cs 411 B

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