if (source != null) {
msg = new Message(MetaModelPluginImpl.COMPILATION_ERROR, errorName, source.getName(), error.getLine(), text);
} else {
msg = new Message(MetaModelPluginImpl.GENERAL_PROBLEM, errorName, text);
}
MetaModelPluginImpl.log.info(msg.toDisplayString());
messages.add(msg);
}
throw new ProcessingException(messages);
}
}