57585960616263
return null; } @Override public void checkFencingConfigured() throws BadFencingConfigurationException { throw new BadFencingConfigurationException("Fencer not configured"); }
127128129130131132133134135
public void checkFencingConfigured() throws BadFencingConfigurationException { if (fenceConfigError != null) { throw fenceConfigError; } if (fencer == null) { throw new BadFencingConfigurationException( "No fencer configured for " + this); } }