log.trace("acquireState(): got a TimeoutException");
}
}
catch (Exception e)
{
throw new CacheException("Error acquiring state", e);
}
catch (Throwable t)
{
throw new RuntimeException(t);
}
}
// If we got a timeout exception on the final try,
// this is a failure condition
if (timeoutException != null)
{
throw new CacheException("acquireState(): Failed getting state due to timeout",
timeoutException);
}
if (log.isDebugEnabled())
{