Windows-powershell / PowerShell-master /src /System.Management.Automation /utils /CommandProcessorExceptions.cs
| // 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 | |
| { | |
| private const string errorIdString = "NativeCommandFailed"; | |
| /// <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> | |
| [] | |
| protected ApplicationFailedException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <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); | |
| } | |
| } | |
| } | |