/********************************************************************++ Copyright (c) Microsoft Corporation. All rights reserved. --********************************************************************/ using System.Runtime.Serialization; #if !CORECLR using System.Security.Permissions; #else // Use stub for SerializableAttribute. using Microsoft.PowerShell.CoreClr.Stubs; #endif 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 PSNotImplementedException : NotImplementedException, IContainsErrorRecord { #region ctor /// /// Initializes a new instance of the PSNotImplementedException class. /// /// constructed object public PSNotImplementedException() : base() { } #region Serialization #if !CORECLR // NotImplementedException Has No Serialization In CoreCLR /// /// Initializes a new instance of the PSNotImplementedException class /// using data serialized via /// /// /// serialization information /// streaming context /// constructed object protected PSNotImplementedException(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); } #endif #endregion Serialization /// /// Initializes a new instance of the PSNotImplementedException class. /// /// /// constructed object public PSNotImplementedException(string message) : base(message) { } /// /// Initializes a new instance of the PSNotImplementedException class. /// /// /// /// constructed object public PSNotImplementedException(string message, Exception innerException) : base(message, innerException) { } #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.NotImplemented, null); } return _errorRecord; } } private ErrorRecord _errorRecord; private string _errorId = "NotImplemented"; } // PSNotImplementedException } // System.Management.Automation