use of com.palantir.atlasdb.timelock.TooManyRequestsExceptionMapper in project atlasdb by palantir.
the class TimeLockAgent method registerExceptionMappers.
private void registerExceptionMappers() {
registrar.accept(new BlockingTimeoutExceptionMapper());
registrar.accept(new NotCurrentLeaderExceptionMapper(redirectRetryTargeter()));
registrar.accept(new TooManyRequestsExceptionMapper());
}
Aggregations