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