C Sharp (C#) - Exception Handling
What is wrong with this custom exception class?
public class InvalidDataException : Exception {
public InvalidDataException(string message) {
Message = message;
}
}