SetupException.cs 532 B

1234567891011121314151617181920212223
  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. }
  19. }
  20. }