if (qualifiedNameListContext != null) {
constructorDeclaration.setThrowsExceptions(
getAdapter(QualifiedNamesAdapter.class).adapt(qualifiedNameListContext));
}
ConstructorBodyContext constructorBodyContext = getChild(context, ConstructorBodyContext.class);
if (constructorBodyContext != null) {
BlockContext blockContext = getChild(constructorBodyContext, BlockContext.class);
if (blockContext != null) {
constructorDeclaration.setBody(getAdapter(BlockAdapter.class).adapt(blockContext));
}