Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 68c8a2e

Browse files
committed
Make InternalErrorException sealed
1 parent 512cda7 commit 68c8a2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/src/Microsoft/Internal/Assumes.InternalErrorException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal partial class Assumes
1212
{
1313
// The exception that is thrown when an internal assumption failed.
1414
[SuppressMessage("Microsoft.Design", "CA1064:ExceptionsShouldBePublic")]
15-
private class InternalErrorException : Exception
15+
private sealed class InternalErrorException : Exception
1616
{
1717
public InternalErrorException(string message)
1818
: base(string.Format(CultureInfo.CurrentCulture, CommonStrings.Diagnostic_InternalExceptionMessage, message))

0 commit comments

Comments
 (0)