The following code
class MemberException extends ServerException {
String message;
MemberException(message) {
super(message);
}
}
class ServerException implements Exception {
String message;
ServerException(this.message);
}
produces the following (somewhat unhelpful) error message
Too few arguments in implicit super() constructor invocation in '(String) -> dynamic'