You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When receiving an error from almost any cmdlet, it will be generic and does not specify specifically what kind of error occurred, especially if that error occurred in a deeper level function.
The text was updated successfully, but these errors were encountered:
Looks like we should also probably use "InnerException" to collect up the root cause. For example:
$InnerException = New-Object System.SomethingException "This is the first exception."
$OuterException = New-Object System.OtherException ("This is the outer exception",$InnerException)
When receiving an error from almost any cmdlet, it will be generic and does not specify specifically what kind of error occurred, especially if that error occurred in a deeper level function.
The text was updated successfully, but these errors were encountered: