File size: 4,391 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Runtime.Serialization;
namespace System.Management.Automation
{
/// <summary>
/// Defines the exception that is thrown if a native command fails.
/// </summary>
public class ApplicationFailedException : RuntimeException
{
#region private
private const string errorIdString = "NativeCommandFailed";
#endregion
#region ctor
#region Serialization
/// <summary>
/// Initializes a new instance of the ApplicationFailedException class and defines the serialization information,
/// and streaming context.
/// </summary>
/// <param name="info">The serialization information to use when initializing this object.</param>
/// <param name="context">The streaming context to use when initializing this object.</param>
/// <returns>Constructed object.</returns>
[Obsolete("Legacy serialization support is deprecated since .NET 8", DiagnosticId = "SYSLIB0051")]
protected ApplicationFailedException(SerializationInfo info,
StreamingContext context)
{
throw new NotSupportedException();
}
#endregion Serialization
/// <summary>
/// Initializes a new instance of the class ApplicationFailedException.
/// </summary>
/// <returns>Constructed object.</returns>
public ApplicationFailedException() : base()
{
base.SetErrorId(errorIdString);
base.SetErrorCategory(ErrorCategory.ResourceUnavailable);
}
/// <summary>
/// Initializes a new instance of the ApplicationFailedException class and defines the error message.
/// </summary>
/// <param name="message">The error message to use when initializing this object.</param>
/// <returns>Constructed object.</returns>
public ApplicationFailedException(string message) : base(message)
{
base.SetErrorId(errorIdString);
base.SetErrorCategory(ErrorCategory.ResourceUnavailable);
}
/// <summary>
/// Initializes a new instance of the ApplicationFailedException class and defines the error message and
/// errorID.
/// </summary>
/// <param name="message">The error message to use when initializing this object.</param>
/// <param name="errorId">The errorId to use when initializing this object.</param>
/// <returns>Constructed object.</returns>
internal ApplicationFailedException(string message, string errorId) : base(message)
{
base.SetErrorId(errorId);
base.SetErrorCategory(ErrorCategory.ResourceUnavailable);
}
/// <summary>
/// Initializes a new instance of the ApplicationFailedException class and defines the error message,
/// error ID and inner exception.
/// </summary>
/// <param name="message">The error message to use when initializing this object.</param>
/// <param name="errorId">The errorId to use when initializing this object.</param>
/// <param name="innerException">The inner exception to use when initializing this object.</param>
/// <returns>Constructed object.</returns>
internal ApplicationFailedException(string message, string errorId, Exception innerException)
: base(message, innerException)
{
base.SetErrorId(errorId);
base.SetErrorCategory(ErrorCategory.ResourceUnavailable);
}
/// <summary>
/// Initializes a new instance of the ApplicationFailedException class and defines the error message and
/// inner exception.
/// </summary>
/// <param name="message">The error message to use when initializing this object.</param>
/// <param name="innerException">The inner exception to use when initializing this object.</param>
/// <returns>Constructed object.</returns>
public ApplicationFailedException(string message,
Exception innerException)
: base(message, innerException)
{
base.SetErrorId(errorIdString);
base.SetErrorCategory(ErrorCategory.ResourceUnavailable);
}
#endregion ctor
}
}
|