捕获FULL异常消息

问题描述 投票:40回答:4

考虑:

Invoke-WebRequest $sumoApiURL -Headers @{"Content-Type"= "application/json"} -Credential $cred -WebSession $webRequestSession -Method post -Body $sumojson -ErrorAction Stop

这会引发以下异常:

Enter image description here

如何完全捕获它或至少过滤掉“已存在同名资源”?

使用$_.Exception.GetType().FullName产量

System.Net.WebException

$_.Exception.Message

远程服务器返回错误:(400)错误请求。

powershell exception exception-handling
4个回答
69
投票

PowerShell中的错误和异常是结构化对象。您在控制台上看到的错误消息实际上是一个格式化的消息,其中包含来自错误/异常对象的多个元素的信息。你可以自己(重新)自己构建它:

$formatstring = "{0} : {1}`n{2}`n" +
                "    + CategoryInfo          : {3}`n" +
                "    + FullyQualifiedErrorId : {4}`n"
$fields = $_.InvocationInfo.MyCommand.Name,
          $_.ErrorDetails.Message,
          $_.InvocationInfo.PositionMessage,
          $_.CategoryInfo.ToString(),
          $_.FullyQualifiedErrorId

$formatstring -f $fields

如果您只想在catch块中显示错误消息,则可以简单地回显当前对象变量(在该点保存错误):

try {
  ...
} catch {
  $_
}

如果您需要彩色输出,请使用带有格式化字符串的Write-Host,如上所述:

try {
  ...
} catch {
  ...
  Write-Host -Foreground Red -Background Black ($formatstring -f $fields)
}

话虽如此,通常你不想只是在异常处理程序中显示错误消息(否则-ErrorAction Stop将毫无意义)。结构化错误/异常对象为您提供了可用于更好地控制错误的其他信息。例如,你有$_.Exception.HResult与实际的错误号。 $_.ScriptStackTrace$_.Exception.StackTrace,因此您可以在调试时显示堆栈跟踪。 $_.Exception.InnerException使您可以访问嵌套异常,这些异常通常包含有关错误的其他信息(顶级PowerShell错误可能有些泛泛)。您可以使用以下内容展开这些嵌套异常:

$e = $_.Exception
$msg = $e.Message
while ($e.InnerException) {
  $e = $e.InnerException
  $msg += "`n" + $e.Message
}
$msg

在您的情况下,您要提取的信息似乎在$_.ErrorDetails.Message。如果你有一个对象或一个JSON字符串,我不太清楚,但你应该能够通过运行获得有关$_.ErrorDetails成员的类型和值的信息

$_.ErrorDetails | Get-Member
$_.ErrorDetails | Format-List *

如果$_.ErrorDetails.Message是一个对象,你应该能够获得如下的消息字符串:

$_.ErrorDetails.Message.message

否则你需要先将JSON字符串转换为对象:

$_.ErrorDetails.Message | ConvertFrom-Json | Select-Object -Expand message

根据您正在处理的错误类型,特定类型的异常可能还包括有关手头问题的更具体信息。例如,在您的情况下,您有一个WebException,除了错误消息($_.Exception.Message)之外还包含来自服务器的实际响应:

PS C:\> $e.Exception | Get-Member

   TypeName: System.Net.WebException

Name             MemberType Definition
----             ---------- ----------
Equals           Method     bool Equals(System.Object obj), bool _Exception.E...
GetBaseException Method     System.Exception GetBaseException(), System.Excep...
GetHashCode      Method     int GetHashCode(), int _Exception.GetHashCode()
GetObjectData    Method     void GetObjectData(System.Runtime.Serialization.S...
GetType          Method     type GetType(), type _Exception.GetType()
ToString         Method     string ToString(), string _Exception.ToString()
Data             Property   System.Collections.IDictionary Data {get;}
HelpLink         Property   string HelpLink {get;set;}
HResult          Property   int HResult {get;}
InnerException   Property   System.Exception InnerException {get;}
Message          Property   string Message {get;}
Response         Property   System.Net.WebResponse Response {get;}
Source           Property   string Source {get;set;}
StackTrace       Property   string StackTrace {get;}
Status           Property   System.Net.WebExceptionStatus Status {get;}
TargetSite       Property   System.Reflection.MethodBase TargetSite {get;}

它为您提供如下信息:

PS C:\> $e.Exception.Response

IsMutuallyAuthenticated : False
Cookies                 : {}
Headers                 : {Keep-Alive, Connection, Content-Length, Content-T...}
SupportsHeaders         : True
ContentLength           : 198
ContentEncoding         :
ContentType             : text/html; charset=iso-8859-1
CharacterSet            : iso-8859-1
Server                  : Apache/2.4.10
LastModified            : 17.07.2016 14:39:29
StatusCode              : NotFound
StatusDescription       : Not Found
ProtocolVersion         : 1.1
ResponseUri             : http://www.example.com/
Method                  : POST
IsFromCache             : False

由于并非所有异常都具有完全相同的属性集,因此您可能希望针对特定异常使用特定处理程序:

try {
  ...
} catch [System.ArgumentException] {
  # handle argument exceptions
} catch [System.Net.WebException] {
  # handle web exceptions
} catch {
  # handle all other exceptions
}

如果无论是否发生错误都需要执行操作(清除任务,如关闭套接字或数据库连接),可以在异常处理后将它们放在finally块中:

try {
  ...
} catch {
  ...
} finally {
  # cleanup operations go here
}

10
投票

我找到了!

只需打印出$Error[0]即可获得最后一条错误消息。


5
投票

你可以加:

-ErrorVariable errvar

然后看看$errvar


3
投票

以下对我来说效果很好

try {
    asdf
} catch {
    $string_err = $_ | Out-String
}

write-host $string_err

结果如下是字符串而不是ErrorRecord对象

asdf : The term 'asdf' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At C:\Users\TASaif\Desktop\tmp\catch_exceptions.ps1:2 char:5
+     asdf
+     ~~~~
    + CategoryInfo          : ObjectNotFound: (asdf:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
© www.soinside.com 2019 - 2024. All rights reserved.