A game about forced loneliness, made by TACStudios
1using System; 2 3namespace Unity.PerformanceTesting.Exceptions 4{ 5 /// <summary> 6 /// Performance test exception. 7 /// </summary> 8 [Serializable] 9 public class PerformanceTestException : System.Exception 10 { 11 /// <summary> 12 /// Performance test exception. Used to indicate failures while running a performance test. 13 /// </summary> 14 /// <param name="message">Exception message.</param> 15 public PerformanceTestException(string message) 16 : base(message) { } 17 } 18}