private void processServiceMethod(final Method loadMethod, final BootstrapContext context,
final ErraiServiceConfiguratorImpl config) {
ServiceParser svcParser;
try {
svcParser = new ServiceMethodParser(loadMethod);
} catch (NotAService ex) {
// Diagnose Errai-111
StringBuilder sb = new StringBuilder();
sb.append("Service annotation cannot be loaded. (See https://jira.jboss.org/browse/ERRAI-111)\n");
sb.append(loadMethod.getName()).append(" class: ").append(loadMethod.getClass().getSimpleName());