using System; namespace Unity.PerformanceTesting.Exceptions { /// /// Performance test exception. /// [Serializable] public class PerformanceTestException : System.Exception { /// /// Performance test exception. Used to indicate failures while running a performance test. /// /// Exception message. public PerformanceTestException(string message) : base(message) { } } }