Skip to content

Commit

Permalink
Remove obsolete Exception constructor. (#2090)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianrob authored Aug 7, 2024
1 parent bdcc158 commit 637b998
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/PerfView.TestUtilities/ThrowingTraceListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@ public class DebugAssertFailureException : Exception
public DebugAssertFailureException() { }
public DebugAssertFailureException(string message) : base(message) { }
public DebugAssertFailureException(string message, Exception inner) : base(message, inner) { }
protected DebugAssertFailureException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) : base(info, context)
{ }
}
}
}

0 comments on commit 637b998

Please sign in to comment.