Powershell抛出数据异常

时间:2017-03-01 10:07:44

标签: powershell exception throw

如何使用' throw' PowerShell中的方向与自定义数据对象抛出异常? 说,它能做到吗?:

throw 'foo', $myData

然后数据可用于“捕获”。逻辑:

catch {
    if ($_.exception.some_property -eq 'foo') {
        $data = $_.exception.some_field_to_get_data
        # dealing with data
    }
}
编辑


我的目的是知道是否有一个简短而酷的语法来抛出异常(没有显式创建我自己的类型),其名称可以通过其名称来决定,并在' catch'中处理其数据。块。

1 个答案:

答案 0 :(得分:5)

您可以throw任何类型的System.Exception实例(此处使用XamlException作为示例):

try {
    $Exception = New-Object System.Xaml.XamlException -ArgumentList ("Bad XAML!", $null, 10, 2)
    throw $Exception
}
catch{
    if($_.Exception.LineNumber -eq 10){
        Write-Host "Error on line 10, position $($_.Exception.LinePosition)"
    }
}

如果您正在运行5.0或更高版本的PowerShell,则可以使用新的PowerShell类功能来定义自定义异常类型:

class MyException : System.Exception
{
    [string]$AnotherMessage
    [int]$SomeNumber

    MyException($Message,$AnotherMessage,$SomeNumber) : base($Message){
        $this.AnotherMessage = $AnotherMessage
        $this.SomeNumber     = $SomeNumber
    }
}

try{
    throw [MyException]::new('Fail!','Something terrible happened',135)
}
catch [MyException] {
    $e = $_.Exception
    if($e.AnotherMessage -eq 'Something terrible happened'){
        Write-Warning "$($e.SomeNumber) terrible things happened"
    }
}