From cb3bcd4be40249d2a189b19c35b2416c1d911e24 Mon Sep 17 00:00:00 2001 From: EgorBo Date: Thu, 23 Feb 2017 02:52:55 +0300 Subject: [PATCH] Change base class of System.Data.OperationAbortedException to System.SystemException --- .../src/System/Data/OperationAbortedException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System.Data.SqlClient/src/System/Data/OperationAbortedException.cs b/src/System.Data.SqlClient/src/System/Data/OperationAbortedException.cs index c223442ca066..886865475c36 100644 --- a/src/System.Data.SqlClient/src/System/Data/OperationAbortedException.cs +++ b/src/System.Data.SqlClient/src/System/Data/OperationAbortedException.cs @@ -11,7 +11,7 @@ namespace System.Data { [Serializable] - public sealed class OperationAbortedException : Exception + public sealed class OperationAbortedException : SystemException { private OperationAbortedException(string message, Exception innerException) : base(message, innerException) {