Private/Get-StandardError.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
function Get-StandardError { <# .SYNOPSIS Error Message .DESCRIPTION Generates a standard error response .PARAMETER Exception Error Exception Object #> param ( [Parameter(Mandatory=$true)] $Exception ) Write-Output "An error occurred - please check rights or parameters for proper configuration and try again" Write-Output "=======================================================================" Write-Output "Specific Error is: " Write-Output "$($Exception)" #Exit 1 } |