A game about forced loneliness, made by TACStudios
1using System;
2using NUnit.Framework;
3using NUnit.Framework.Interfaces;
4
5namespace UnityEngine.TestTools.TestRunner
6{
7 internal class InvalidSignatureException : ResultStateException
8 {
9 public InvalidSignatureException(string message)
10 : base(message)
11 {
12 }
13
14 public override ResultState ResultState
15 {
16 get { return ResultState.NotRunnable; }
17 }
18 }
19}