package com.cloudera.util;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
static final Logger LOG = LoggerFactory.getLogger(Retryable.class);
protected RetryHarness harness = null;
this.harness = harness;
}
public boolean doTry()
throws Exception {
throw new Exception("Subclass me!");
}
}