RosettaCodeData/Task/Exceptions/PowerShell/exceptions-3.psh
2017-09-25 22:28:19 +02:00

12 lines
189 B
Text

try
{
Get-Content -Path .\temp.txt
}
catch [System.IO.FileNotFoundException]
{
Write-Host "File not found exception"
}
catch [System.Exception]
{
Write-Host "Other exception"
}