in src/main/java/com/amazonaws/services/dynamodbv2/AmazonDynamoDBLockClient.java [321:331]
public void assertLockTableExists() throws LockTableDoesNotExistException {
boolean exists;
try {
exists = this.lockTableExists();
} catch (final Exception e) {
throw new LockTableDoesNotExistException("Lock table " + this.tableName + " does not exist", e);
}
if (!exists) {
throw new LockTableDoesNotExistException("Lock table " + this.tableName + " does not exist");
}
}