else
throw new InitializationException("Trying to overwrite singleton Server.disambiguators. Something fishy happened!");
}
public static Spotter getSpotter(String name) throws InputException {
SpotterPolicy policy = SpotterPolicy.Default;
try {
policy = SpotterPolicy.valueOf(name);
} catch (IllegalArgumentException e) {
throw new InputException(String.format("Specified parameter spotter=%s is invalid. Use one of %s.",name,SpotterPolicy.values()));
}