/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/utils/CommandProcessorExceptions.cs
100 строк
4 KB
xtqqczze
Fix `SA1028`: Code should not contain trailing whitespace. Part 1. (#26203)
16 окт 2025, 10:58
Не верифицирован
16 окт 2025, 10:58
a10ff10
Код
Авторство
О чём код?
// 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 } }