설명 없음
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.

SetupException.cs 573B

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