package com.cku.util;

public interface IRetryFunction<R, T>
{
	public T execute(R param) throws Exception;
}
