Java - Custom Exceptions
Identify the error in this custom exception class:
public class MyException extends Exception {
public void MyException(String message) {
super(message);
}
}