Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Catch a specific exception using PowerShell

I am trying to catch a specific exception using PowerShell. Please see below example:

try {
    throw [System.IO.FileNotFoundException]
}
catch [System.IO.FileNotFoundException] {
    "File not found"
}
catch {
    "Exception type: $($_.Exception.GetType().Name)"
}

Output from this code is: Exception type: RuntimeException

The output I am expecting is: "File not found"

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

What am I doing wrong here?

>Solution :

You can’t throw <typeName>. You need to throw an instance of an exception type.

Change the throw statement to:

throw [System.IO.FileNotFoundException]::new("Failed to find that file you asking for", "<attempted file name/path goes here>")
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading