C Sharp (C#) - Exception Handling
Examine the following custom exception class:
What is the main issue with this implementation?
public class CustomError : Exception {
public CustomError(string message) {
Console.WriteLine(message);
}
}What is the main issue with this implementation?
