C Sharp (C#) - Exception Handling
What is wrong with this exception handling code?
try {
// code
} catch (Exception ex) {
Console.WriteLine("Error: " + ex.Message);
throw new Exception("New error");
}