new Long((String) value), Node.CONNECTION_DEFAULT_TYPE, Node.CONNECTION_DEFAULT_TYPE);
} catch (IllegalArgumentException e) {
// could not link
}
} else if (EXCEPTION_HANDLERS.equals(id)) {
ExceptionScope exceptionScope = (ExceptionScope)
getCompositeContextNode().getDefaultContext(ExceptionScope.EXCEPTION_SCOPE);
if (exceptionScope == null) {
exceptionScope = new ExceptionScope();
getCompositeContextNode().addContext(exceptionScope);
getCompositeContextNode().setDefaultContext(exceptionScope);
}
exceptionScope.setExceptionHandlers((Map<String, ExceptionHandler>) value);
} else {
super.setPropertyValue(id, value);
}
}