// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Runtime.Serialization; namespace System.Management.Automation { /// /// This is a wrapper for exception class /// /// which provides additional information via /// . /// /// /// Instances of this exception class are usually generated by the /// PowerShell Engine. It is unusual for code outside the PowerShell Engine /// to create an instance of this class. /// public class PSInvalidOperationException : InvalidOperationException, IContainsErrorRecord { #region ctor /// /// Initializes a new instance of the PSInvalidOperationException class. /// /// Constructed object. public PSInvalidOperationException() : base() { } #region Serialization /// /// Initializes a new instance of the PSInvalidOperationException class /// using data serialized via /// /// /// Serialization information. /// Streaming context. /// Constructed object. [Obsolete("Legacy serialization support is deprecated since .NET 8", DiagnosticId = "SYSLIB0051")] protected PSInvalidOperationException(SerializationInfo info, StreamingContext context) { throw new NotSupportedException(); } #endregion Serialization /// /// Initializes a new instance of the PSInvalidOperationException class. /// /// /// Constructed object. public PSInvalidOperationException(string message) : base(message) { } /// /// Initializes a new instance of the PSInvalidOperationException class. /// /// /// /// Constructed object. public PSInvalidOperationException(string message, Exception innerException) : base(message, innerException) { } /// /// Initializes a new instance of the PSInvalidOperationException class. /// /// /// /// /// /// /// Constructed object. internal PSInvalidOperationException(string message, Exception innerException, string errorId, ErrorCategory errorCategory, object target) : base(message, innerException) { _errorId = errorId; _errorCategory = errorCategory; _target = target; } #endregion ctor /// /// Additional information about the error. /// /// /// /// Note that ErrorRecord.Exception is /// . /// public ErrorRecord ErrorRecord { get { _errorRecord ??= new ErrorRecord( new ParentContainsErrorRecordException(this), _errorId, _errorCategory, _target); return _errorRecord; } } private ErrorRecord _errorRecord; private string _errorId = "InvalidOperation"; internal void SetErrorId(string errorId) { _errorId = errorId; } private readonly ErrorCategory _errorCategory = ErrorCategory.InvalidOperation; private readonly object _target = null; } }