C Sharp (C#) - Exception Handling
What is the issue with the following C# code?
try {
Console.WriteLine("Processing");
} catch (Exception ex) {
Console.WriteLine("Error occurred");
} finally {
Console.WriteLine("Finished");
} catch {
Console.WriteLine("Another catch");
}