/********************************************************************++ Copyright (c) Microsoft Corporation. All rights reserved. --********************************************************************/ using System.Runtime.Serialization; using System.Security.Permissions; 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 /// Monad Engine. It is unusual for code outside the Monad Engine /// to create an instance of this class. /// [Serializable] 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 protected PSInvalidOperationException(SerializationInfo info, StreamingContext context) : base(info, context) { _errorId = info.GetString("ErrorId"); } /// /// Serializer for /// /// serialization information /// streaming context [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { if (info == null) { throw new PSArgumentNullException("info"); } base.GetObjectData(info, context); info.AddValue("ErrorId", _errorId); } #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 { if (null == _errorRecord) { _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 ErrorCategory _errorCategory = ErrorCategory.InvalidOperation; private object _target = null; } // PSInvalidOperationException } // System.Management.Automation