else
{
final ContextDescriptor descriptor = contexts.get(contextName);
if (descriptor == null)
{
throw new UnknownContextException(String.format("Cannot find context with name [%s].", contextName));
}
return new ContextMap(Collections.singletonList(descriptor));
}
}