}
protected ConfigException error(String msg, Throwable e)
{
if (_configLocation != null)
return new LineConfigException(_configLocation + msg, e);
else if (_table.getLocation() != null)
return new LineConfigException(_table.getLocation() + msg, e);
else
return new ConfigException(msg, e);
}