2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="OperationAbortedException.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2017-08-21 15:34:15 +00:00
|
|
|
// <owner current="true" primary="true">Microsoft</owner>
|
|
|
|
// <owner current="true" primary="false">Microsoft</owner>
|
2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.Data {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Data;
|
|
|
|
using System.Data.Common;
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
public sealed class OperationAbortedException : SystemException {
|
|
|
|
private OperationAbortedException(string message, Exception innerException) : base(message, innerException) {
|
|
|
|
HResult = HResults.OperationAborted;
|
|
|
|
}
|
|
|
|
|
|
|
|
private OperationAbortedException(SerializationInfo si, StreamingContext sc) : base(si, sc) {
|
|
|
|
}
|
|
|
|
|
|
|
|
static internal OperationAbortedException Aborted(Exception inner) {
|
|
|
|
OperationAbortedException e;
|
|
|
|
if (inner == null) {
|
|
|
|
e = new OperationAbortedException(Res.GetString(Res.ADP_OperationAborted), null);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
e = new OperationAbortedException(Res.GetString(Res.ADP_OperationAbortedExceptionMessage), inner);
|
|
|
|
}
|
|
|
|
ADP.TraceExceptionAsReturnValue(e);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|