blob: 3566cb734fab777415d2466e0d292d8a715bc9dd [file] [log] [blame]
package com.siyeh.igtest.exceptionHandling;
public class UnusedCatchParameterInspectionInspection
{
public void foo()
{
try
{
throw new Exception();
}
catch(Exception e)
{
}
try
{
throw new Exception();
}
catch(Exception ignore)
{
}
try
{
throw new Exception();
}
catch(Exception e)
{
//catch comment
}
}
}