RosettaCodeData/Task/Exceptions/PowerShell/exceptions-3.psh

13 lines
189 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
try
{
Get-Content -Path .\temp.txt
}
catch [System.IO.FileNotFoundException]
{
Write-Host "File not found exception"
}
catch [System.Exception]
{
Write-Host "Other exception"
}