/********************************************************************++ 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 PSArgumentException : ArgumentException, IContainsErrorRecord { #region ctor /// /// Initializes a new instance of the PSArgumentException class. /// /// constructed object public PSArgumentException() : base() { } /// /// Initializes a new instance of the PSArgumentException class. /// /// /// constructed object /// /// Per MSDN, the parameter is message. /// I confirm this experimentally as well. /// public PSArgumentException(string message) : base(message) { } /// /// Initializes a new instance of the PSArgumentException class. /// /// /// /// constructed object /// /// Note the unusual order of the construction parameters. /// ArgumentException has this ctor form and we imitate it here. /// public PSArgumentException(string message, string paramName) : base(message, paramName) { _message = message; } #region Serialization /// /// Initializes a new instance of the PSArgumentException class /// using data serialized via /// /// /// serialization information /// streaming context /// constructed object protected PSArgumentException(SerializationInfo info, StreamingContext context) : base(info, context) { _errorId = info.GetString("ErrorId"); _message = info.GetString("PSArgumentException_MessageOverride"); } /// /// 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); info.AddValue("PSArgumentException_MessageOverride", _message); } #endregion Serialization /// /// Initializes a new instance of the PSArgumentException class. /// /// /// /// constructed object public PSArgumentException(string message, Exception innerException) : base(message, innerException) { _message = message; } #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.InvalidArgument, null); } return _errorRecord; } } private ErrorRecord _errorRecord; private string _errorId = "Argument"; /// /// see /// /// /// Exception.Message is get-only, but you can effectively /// set it in a subclass by overriding this virtual property. /// /// public override string Message { get { return String.IsNullOrEmpty(_message) ? base.Message : _message; } } private string _message; } // PSArgumentException } // System.Management.Automation