Polishing
This commit is contained in:
@@ -27,6 +27,7 @@ import java.util.concurrent.Callable;
|
||||
*
|
||||
* @author Costin Leau
|
||||
* @author Juergen Hoeller
|
||||
* @author Stephane Nicoll
|
||||
* @since 3.1
|
||||
*/
|
||||
public interface Cache {
|
||||
@@ -164,7 +165,7 @@ public interface Cache {
|
||||
private final Object key;
|
||||
|
||||
public ValueRetrievalException(Object key, Callable<?> loader, Throwable ex) {
|
||||
super(String.format("Value for key '%s' could not " + "be loaded using '%s'", key, loader), ex);
|
||||
super(String.format("Value for key '%s' could not be loaded using '%s'", key, loader), ex);
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user