Exceptions/New-ActiveDirectoryOperationException.ps1
# Copyright (c) 2023 Anthony J. Raymond, MIT License (see manifest for details) using namespace System.Management.Automation using namespace System.DirectoryServices.ActiveDirectory function New-ActiveDirectoryOperationException { [CmdletBinding()] [OutputType([System.Management.Automation.ErrorRecord])] ## PARAMETERS ############################################################# param( [Parameter( Position = 0, Mandatory )] [ValidateNotNullOrEmpty()] [string] $Message, [Parameter()] [switch] $Throw ) ## PROCESS ################################################################ process { $ErrorRecord = [ErrorRecord]::new( [ActiveDirectoryOperationException]::new($Message), "System.DirectoryServices.ActiveDirectory.ActiveDirectoryOperationException", [ErrorCategory]::InvalidOperation, $null ) if ($Throw) { throw $ErrorRecord } Write-Output $ErrorRecord } } |