A game about forced loneliness, made by TACStudios
1using System; 2 3namespace UnityEditor.TestTools.TestRunner.CommandLineTest 4{ 5 internal class SetupException : Exception 6 { 7 public ExceptionType Type { get; } 8 public object[] Details { get; } 9 10 public SetupException(ExceptionType type, params object[] details) 11 { 12 Type = type; 13 Details = details; 14 } 15 16 public enum ExceptionType 17 { 18 ScriptCompilationFailed, 19 PlatformNotFound, 20 TestSettingsFileNotFound, 21 OrderedTestListFileNotFound, 22 } 23 } 24}