8

这是我的代码:

Function Foo {
    If (1 -Eq 2) {
        # Do stuff
    }
    Else {
        # Throw custom exception
    }
}

Try {
    Foo

    Write-Host "Success"
}
Catch {
    $ErrorMessage = $_.Exception.InnerException.Message

    Write-Host "Failure"

    # Do stuff with the error message
}

我想# Throw custom exception用会导致Catch触发的代码替换。我怎样才能做到这一点?

4

1 回答 1

21

不确定我是否真的明白你的问题,但似乎你想要做的就是:

throw "message for the exception"
于 2012-07-28T19:50:50.980 回答