Windows-powershell / PowerShell-master /src /System.Management.Automation /utils /ExecutionExceptions.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Runtime.Serialization; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Management.Automation.Internal; | |
| namespace System.Management.Automation | |
| { | |
| /// <summary> | |
| /// Indicates that a cmdlet hit a terminating error. | |
| /// </summary> | |
| /// <remarks> | |
| /// InnerException is the error which the cmdlet hit. | |
| /// </remarks> | |
| public class CmdletInvocationException : RuntimeException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletInvocationException class. | |
| /// </summary> | |
| /// <param name="errorRecord"></param> | |
| internal CmdletInvocationException(ErrorRecord errorRecord) | |
| : base(RetrieveMessage(errorRecord), RetrieveException(errorRecord)) | |
| { | |
| ArgumentNullException.ThrowIfNull(errorRecord); | |
| _errorRecord = errorRecord; | |
| if (errorRecord.Exception != null) | |
| { | |
| // 2005/04/13-JonN Can't do this in an unsealed class: HelpLink = errorRecord.Exception.HelpLink; | |
| // Exception.Source is set by Throw | |
| // Source = errorRecord.Exception.Source; | |
| } | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletInvocationException class. | |
| /// </summary> | |
| /// <param name="innerException">Wrapped exception.</param> | |
| /// <param name="invocationInfo"> | |
| /// identity of cmdlet, null is unknown | |
| /// </param> | |
| internal CmdletInvocationException(Exception innerException, | |
| InvocationInfo invocationInfo) | |
| : base(RetrieveMessage(innerException), innerException) | |
| { | |
| ArgumentNullException.ThrowIfNull(innerException); | |
| // invocationInfo may be null | |
| if (innerException is IContainsErrorRecord icer && icer.ErrorRecord != null) | |
| { | |
| _errorRecord = new ErrorRecord(icer.ErrorRecord, innerException); | |
| } | |
| else | |
| { | |
| // When no ErrorId is specified by a thrown exception, | |
| // we use innerException.GetType().FullName. | |
| _errorRecord = new ErrorRecord( | |
| innerException, | |
| innerException.GetType().FullName, | |
| ErrorCategory.NotSpecified, | |
| null); | |
| } | |
| _errorRecord.SetInvocationInfo(invocationInfo); | |
| // 2005/04/13-JonN Can't do this in an unsealed class: HelpLink = innerException.HelpLink; | |
| // Exception.Source is set by Throw | |
| // Source = innerException.Source; | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletInvocationException class. | |
| /// </summary> | |
| public CmdletInvocationException() | |
| : base() | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletInvocationException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public CmdletInvocationException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletInvocationException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public CmdletInvocationException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the CmdletInvocationException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected CmdletInvocationException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// The error reported by the cmdlet. | |
| /// </summary> | |
| /// <value>never null</value> | |
| public override ErrorRecord ErrorRecord | |
| { | |
| get | |
| { | |
| _errorRecord ??= new ErrorRecord( | |
| new ParentContainsErrorRecordException(this), | |
| "CmdletInvocationException", | |
| ErrorCategory.NotSpecified, | |
| null); | |
| return _errorRecord; | |
| } | |
| } | |
| private ErrorRecord _errorRecord = null; | |
| } | |
| /// <summary> | |
| /// Indicates that a cmdlet hit a terminating error of type | |
| /// <see cref="System.Management.Automation.ProviderInvocationException"/>. | |
| /// This is generally reported from the standard provider navigation cmdlets | |
| /// such as get-childitem. | |
| /// </summary> | |
| public class CmdletProviderInvocationException : CmdletInvocationException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletProviderInvocationException class. | |
| /// </summary> | |
| /// <param name="innerException">Wrapped exception.</param> | |
| /// <param name="myInvocation"> | |
| /// identity of cmdlet, null is unknown | |
| /// </param> | |
| /// <returns>Constructed object.</returns> | |
| internal CmdletProviderInvocationException( | |
| ProviderInvocationException innerException, | |
| InvocationInfo myInvocation) | |
| : base(GetInnerException(innerException), myInvocation) | |
| { | |
| ArgumentNullException.ThrowIfNull(innerException); | |
| _providerInvocationException = innerException; | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletProviderInvocationException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public CmdletProviderInvocationException() | |
| : base() | |
| { | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the CmdletProviderInvocationException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected CmdletProviderInvocationException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletProviderInvocationException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public CmdletProviderInvocationException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the CmdletProviderInvocationException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public CmdletProviderInvocationException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| _providerInvocationException = innerException as ProviderInvocationException; | |
| } | |
| /// <summary> | |
| /// InnerException as ProviderInvocationException. | |
| /// </summary> | |
| /// <value>ProviderInvocationException</value> | |
| public ProviderInvocationException ProviderInvocationException | |
| { | |
| get | |
| { | |
| return _providerInvocationException; | |
| } | |
| } | |
| [] | |
| private readonly ProviderInvocationException _providerInvocationException; | |
| /// <summary> | |
| /// This is the ProviderInfo associated with the provider which | |
| /// generated the error. | |
| /// </summary> | |
| /// <value>may be null</value> | |
| public ProviderInfo ProviderInfo | |
| { | |
| get | |
| { | |
| return _providerInvocationException?.ProviderInfo; | |
| } | |
| } | |
| private static Exception GetInnerException(Exception e) | |
| { | |
| return e?.InnerException; | |
| } | |
| } | |
| /// <summary> | |
| /// Indicates that the pipeline has already been stopped. | |
| /// </summary> | |
| /// <remarks> | |
| /// When reported as the result of a command, PipelineStoppedException | |
| /// indicates that the command was stopped asynchronously, either by the | |
| /// user hitting CTRL-C, or by a call to | |
| /// <see cref="System.Management.Automation.Runspaces.Pipeline.Stop"/>. | |
| /// | |
| /// When a cmdlet or provider sees this exception thrown from a PowerShell API such as | |
| /// WriteObject(object) | |
| /// this means that the command was already stopped. The cmdlet or provider | |
| /// should clean up and return. | |
| /// Catching this exception is optional; if the cmdlet or providers chooses not to | |
| /// handle PipelineStoppedException and instead allow it to propagate to the | |
| /// PowerShell Engine's call to ProcessRecord, the PowerShell Engine will handle it properly. | |
| /// </remarks> | |
| public class PipelineStoppedException : RuntimeException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineStoppedException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineStoppedException() | |
| : base(GetErrorText.PipelineStoppedException) | |
| { | |
| SetErrorId("PipelineStopped"); | |
| SetErrorCategory(ErrorCategory.OperationStopped); | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the PipelineStoppedException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected PipelineStoppedException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineStoppedException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineStoppedException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineStoppedException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineStoppedException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| } | |
| } | |
| /// <summary> | |
| /// PipelineClosedException occurs when someone tries to write | |
| /// to an asynchronous pipeline source and the pipeline has already | |
| /// been stopped. | |
| /// </summary> | |
| /// <seealso cref="System.Management.Automation.Runspaces.Pipeline.Input"/> | |
| public class PipelineClosedException : RuntimeException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineClosedException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineClosedException() | |
| : base() | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineClosedException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineClosedException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineClosedException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineClosedException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the PipelineClosedException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected PipelineClosedException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| } | |
| /// <summary> | |
| /// ActionPreferenceStopException indicates that the command stopped due | |
| /// to the ActionPreference.Stop or Inquire policy. | |
| /// </summary> | |
| /// <remarks> | |
| /// For example, if $WarningPreference is "Stop", the command will fail with | |
| /// this error if a cmdlet calls WriteWarning. | |
| /// </remarks> | |
| public class ActionPreferenceStopException : RuntimeException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the ActionPreferenceStopException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public ActionPreferenceStopException() | |
| : this(GetErrorText.ActionPreferenceStop) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ActionPreferenceStopException class. | |
| /// </summary> | |
| /// <param name="error"> | |
| /// Non-terminating error which triggered the Stop | |
| /// </param> | |
| /// <returns>Constructed object.</returns> | |
| internal ActionPreferenceStopException(ErrorRecord error) | |
| : this(RetrieveMessage(error)) | |
| { | |
| ArgumentNullException.ThrowIfNull(error); | |
| _errorRecord = error; | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ActionPreferenceStopException class. | |
| /// </summary> | |
| /// <param name="invocationInfo"></param> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| internal ActionPreferenceStopException(InvocationInfo invocationInfo, string message) | |
| : this(message) | |
| { | |
| base.ErrorRecord.SetInvocationInfo(invocationInfo); | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ActionPreferenceStopException class. | |
| /// </summary> | |
| internal ActionPreferenceStopException(InvocationInfo invocationInfo, | |
| ErrorRecord errorRecord, | |
| string message) | |
| : this(invocationInfo, message) | |
| { | |
| ArgumentNullException.ThrowIfNull(errorRecord); | |
| _errorRecord = errorRecord; | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the ActionPreferenceStopException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected ActionPreferenceStopException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ActionPreferenceStopException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public ActionPreferenceStopException(string message) | |
| : base(message) | |
| { | |
| SetErrorCategory(ErrorCategory.OperationStopped); | |
| SetErrorId("ActionPreferenceStop"); | |
| // fix for BUG: Windows Out Of Band Releases: 906263 and 906264 | |
| // The interpreter prompt CommandBaseStrings:InquireHalt | |
| // should be suppressed when this flag is set. This will be set | |
| // when this prompt has already occurred and Break was chosen, | |
| // or for ActionPreferenceStopException in all cases. | |
| this.SuppressPromptInInterpreter = true; | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ActionPreferenceStopException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public ActionPreferenceStopException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| SetErrorCategory(ErrorCategory.OperationStopped); | |
| SetErrorId("ActionPreferenceStop"); | |
| // fix for BUG: Windows Out Of Band Releases: 906263 and 906264 | |
| // The interpreter prompt CommandBaseStrings:InquireHalt | |
| // should be suppressed when this flag is set. This will be set | |
| // when this prompt has already occurred and Break was chosen, | |
| // or for ActionPreferenceStopException in all cases. | |
| this.SuppressPromptInInterpreter = true; | |
| } | |
| /// <summary> | |
| /// See <see cref="System.Management.Automation.IContainsErrorRecord"/> | |
| /// </summary> | |
| /// <value>ErrorRecord</value> | |
| /// <remarks> | |
| /// If this error results from a non-terminating error being promoted to | |
| /// terminating due to -ErrorAction or $ErrorActionPreference, this is | |
| /// the non-terminating error. | |
| /// </remarks> | |
| public override ErrorRecord ErrorRecord | |
| { | |
| get { return _errorRecord ?? base.ErrorRecord; } | |
| } | |
| private readonly ErrorRecord _errorRecord = null; | |
| } | |
| /// <summary> | |
| /// ParentContainsErrorRecordException is the exception contained by the ErrorRecord | |
| /// which is associated with a PowerShell engine custom exception through | |
| /// the IContainsErrorRecord interface. | |
| /// </summary> | |
| /// <remarks> | |
| /// We use this exception class | |
| /// so that there is not a recursive "containment" relationship | |
| /// between the PowerShell engine exception and its ErrorRecord. | |
| /// </remarks> | |
| public class ParentContainsErrorRecordException : SystemException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the ParentContainsErrorRecordException class. | |
| /// Note that this sets the Message and not the InnerException. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| /// <remarks> | |
| /// I leave this non-standard constructor form public. | |
| /// </remarks> | |
| // BUGBUG : We should check whether wrapperException is not null. | |
| // Please remove the #pragma warning when this is fixed. | |
| public ParentContainsErrorRecordException(Exception wrapperException) | |
| { | |
| _wrapperException = wrapperException; | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ParentContainsErrorRecordException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public ParentContainsErrorRecordException(string message) | |
| { | |
| _message = message; | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ParentContainsErrorRecordException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public ParentContainsErrorRecordException() | |
| : base() | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ParentContainsErrorRecordException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public ParentContainsErrorRecordException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| _message = message; | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the ParentContainsErrorRecordException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Doesn't return.</returns> | |
| /// <exception cref="NotImplementedException">Always.</exception> | |
| [] | |
| protected ParentContainsErrorRecordException( | |
| SerializationInfo info, StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// Gets the message for the exception. | |
| /// </summary> | |
| public override string Message | |
| { | |
| get | |
| { | |
| return _message ??= (_wrapperException != null) ? _wrapperException.Message : string.Empty; | |
| } | |
| } | |
| private readonly Exception _wrapperException; | |
| private string _message; | |
| } | |
| /// <summary> | |
| /// Indicates that a success object was written and success-to-error ("1>&2") | |
| /// has been specified. | |
| /// </summary> | |
| /// <remarks> | |
| /// The redirected object is available as | |
| /// <see cref="System.Management.Automation.ErrorRecord.TargetObject"/> | |
| /// in the ErrorRecord which contains this exception. | |
| /// </remarks> | |
| public class RedirectedException : RuntimeException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the RedirectedException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public RedirectedException() | |
| : base() | |
| { | |
| SetErrorId("RedirectedException"); | |
| SetErrorCategory(ErrorCategory.NotSpecified); | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the RedirectedException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public RedirectedException(string message) | |
| : base(message) | |
| { | |
| SetErrorId("RedirectedException"); | |
| SetErrorCategory(ErrorCategory.NotSpecified); | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the RedirectedException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public RedirectedException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| SetErrorId("RedirectedException"); | |
| SetErrorCategory(ErrorCategory.NotSpecified); | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the RedirectedException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected RedirectedException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| } | |
| /// <summary> | |
| /// ScriptCallDepthException occurs when the number of | |
| /// session state objects of this type in this scope | |
| /// exceeds the configured maximum. | |
| /// </summary> | |
| /// <remarks> | |
| /// When one PowerShell command or script calls another, this creates an additional | |
| /// scope. Some script expressions also create a scope. PowerShell imposes a maximum | |
| /// call depth to prevent stack overflows. The maximum call depth is configurable | |
| /// but generally high enough that scripts which are not deeply recursive | |
| /// should not have a problem. | |
| /// </remarks> | |
| public class ScriptCallDepthException : SystemException, IContainsErrorRecord | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the ScriptCallDepthException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public ScriptCallDepthException() | |
| : base(GetErrorText.ScriptCallDepthException) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ScriptCallDepthException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public ScriptCallDepthException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the ScriptCallDepthException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public ScriptCallDepthException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the ScriptCallDepthException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected ScriptCallDepthException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// See <see cref="System.Management.Automation.IContainsErrorRecord"/> | |
| /// </summary> | |
| /// <value></value> | |
| /// <remarks> | |
| /// TargetObject is the offending call depth | |
| /// </remarks> | |
| public ErrorRecord ErrorRecord | |
| { | |
| get | |
| { | |
| _errorRecord ??= new ErrorRecord( | |
| new ParentContainsErrorRecordException(this), | |
| "CallDepthOverflow", | |
| ErrorCategory.InvalidOperation, | |
| CallDepth); | |
| return _errorRecord; | |
| } | |
| } | |
| private ErrorRecord _errorRecord = null; | |
| /// <summary> | |
| /// Always 0 - depth is not tracked as there is no hard coded maximum. | |
| /// </summary> | |
| public int CallDepth | |
| { | |
| get { return 0; } | |
| } | |
| } | |
| /// <summary> | |
| /// PipelineDepthException occurs when the number of | |
| /// commands participating in a pipeline (object streaming) | |
| /// exceeds the configured maximum. | |
| /// </summary> | |
| /// <remarks> | |
| /// </remarks> | |
| public class PipelineDepthException : SystemException, IContainsErrorRecord | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineDepthException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineDepthException() | |
| : base(GetErrorText.PipelineDepthException) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineDepthException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineDepthException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the PipelineDepthException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public PipelineDepthException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the PipelineDepthException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected PipelineDepthException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| /// <summary> | |
| /// See <see cref="System.Management.Automation.IContainsErrorRecord"/> | |
| /// </summary> | |
| /// <value></value> | |
| /// <remarks> | |
| /// TargetObject is the offending call depth | |
| /// </remarks> | |
| [] | |
| public ErrorRecord ErrorRecord | |
| { | |
| get | |
| { | |
| _errorRecord ??= new ErrorRecord( | |
| new ParentContainsErrorRecordException(this), | |
| "CallDepthOverflow", | |
| ErrorCategory.InvalidOperation, | |
| CallDepth); | |
| return _errorRecord; | |
| } | |
| } | |
| private ErrorRecord _errorRecord = null; | |
| /// <summary> | |
| /// Always 0 - depth is not tracked as there is no hard coded maximum. | |
| /// </summary> | |
| /// <value></value> | |
| public int CallDepth | |
| { | |
| get { return 0; } | |
| } | |
| } | |
| /// <summary> | |
| /// A cmdlet/provider should throw HaltCommandException | |
| /// when it wants to terminate the running command without | |
| /// this being considered an error. | |
| /// </summary> | |
| /// <remarks> | |
| /// For example, "more" will throw HaltCommandException if the user hits "q". | |
| /// | |
| /// Only throw HaltCommandException from your implementation of ProcessRecord etc. | |
| /// | |
| /// Note that HaltCommandException does not define IContainsErrorRecord. | |
| /// This is because it is not reported to the user. | |
| /// </remarks> | |
| public class HaltCommandException : SystemException | |
| { | |
| /// <summary> | |
| /// Instantiates a new instance of the HaltCommandException class. | |
| /// </summary> | |
| /// <returns>Constructed object.</returns> | |
| public HaltCommandException() | |
| : base(StringUtil.Format(AutomationExceptions.HaltCommandException)) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the HaltCommandException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <returns>Constructed object.</returns> | |
| public HaltCommandException(string message) | |
| : base(message) | |
| { | |
| } | |
| /// <summary> | |
| /// Instantiates a new instance of the HaltCommandException class. | |
| /// </summary> | |
| /// <param name="message"></param> | |
| /// <param name="innerException"></param> | |
| /// <returns>Constructed object.</returns> | |
| public HaltCommandException(string message, | |
| Exception innerException) | |
| : base(message, innerException) | |
| { | |
| } | |
| /// <summary> | |
| /// Initializes a new instance of the HaltCommandException class | |
| /// using data serialized via | |
| /// <see cref="ISerializable"/> | |
| /// </summary> | |
| /// <param name="info">Serialization information.</param> | |
| /// <param name="context">Streaming context.</param> | |
| /// <returns>Constructed object.</returns> | |
| [] | |
| protected HaltCommandException(SerializationInfo info, | |
| StreamingContext context) | |
| { | |
| throw new NotSupportedException(); | |
| } | |
| } | |
| } | |