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.
23 lines
532 B
23 lines
532 B
using System; |
|
|
|
namespace UnityEditor.TestTools.TestRunner.CommandLineTest |
|
{ |
|
internal class SetupException : Exception |
|
{ |
|
public ExceptionType Type { get; } |
|
public object[] Details { get; } |
|
|
|
public SetupException(ExceptionType type, params object[] details) |
|
{ |
|
Type = type; |
|
Details = details; |
|
} |
|
|
|
public enum ExceptionType |
|
{ |
|
ScriptCompilationFailed, |
|
PlatformNotFound, |
|
TestSettingsFileNotFound, |
|
} |
|
} |
|
}
|
|
|