You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,68 @@
|
||||
//---------------------------------------------------------------------
|
||||
// <copyright file="EntityCommandCompilationException.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//
|
||||
// @owner [....]
|
||||
// @backupOwner [....]
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
namespace System.Data {
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Data.Common;
|
||||
using System.Globalization;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Security.Permissions;
|
||||
|
||||
/// <summary>
|
||||
/// Represents a failure while trying to prepare or execute a CommandCompilation
|
||||
///
|
||||
/// This exception is intended to provide a common exception that people can catch to
|
||||
/// hold provider exceptions (SqlException, OracleException) when using the EntityCommand
|
||||
/// to execute statements.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public sealed class EntityCommandCompilationException : EntityException {
|
||||
|
||||
#region Constructors
|
||||
/// <summary>
|
||||
/// initializes a new instance of EntityCommandCompilationException, no message, no inner exception. Probably shouldn't
|
||||
/// exist, but it makes FxCop happy.
|
||||
/// </summary>
|
||||
public EntityCommandCompilationException()
|
||||
: base() {
|
||||
HResult = HResults.CommandCompilation;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// initializes a new instance of EntityCommandCompilationException, with message, no inner exception. Probably shouldn't
|
||||
/// exist, but it makes FxCop happy.
|
||||
/// </summary>
|
||||
public EntityCommandCompilationException(string message)
|
||||
: base(message) {
|
||||
HResult = HResults.CommandCompilation;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// initializes a new instance of EntityCommandCompilationException with message and an inner exception instance
|
||||
/// </summary>
|
||||
/// <param name="message"></param>
|
||||
/// <param name="innerException"></param>
|
||||
public EntityCommandCompilationException(string message, Exception innerException)
|
||||
: base(message, innerException) {
|
||||
HResult = HResults.CommandCompilation;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// initializes a new instance EntityCommandCompilationException with a given SerializationInfo and StreamingContext
|
||||
/// </summary>
|
||||
/// <param name="serializationInfo"></param>
|
||||
/// <param name="streamingContext"></param>
|
||||
private EntityCommandCompilationException(SerializationInfo serializationInfo, StreamingContext streamingContext)
|
||||
: base(serializationInfo, streamingContext) {
|
||||
HResult = HResults.CommandCompilation;
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user