C Sharp (C#) - Exception Handling
Identify the error in this custom exception class declaration:
class MyError : Exception {
public MyError(string msg) {
base(msg);
}
}