From 32e25b081ca0fc110a07fab3f9103d4e6587cc4b Mon Sep 17 00:00:00 2001 From: lucasward Date: Tue, 11 Mar 2008 08:35:30 +0000 Subject: [PATCH] BATCH-316: Finished the 'readers and writers' chapter (chapter 3) --- .../java/org/springframework/batch/item/validator/Validator.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/validator/Validator.java b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/validator/Validator.java index bc4b97b97..ba1e2bb01 100644 --- a/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/validator/Validator.java +++ b/spring-batch-infrastructure/src/main/java/org/springframework/batch/item/validator/Validator.java @@ -28,6 +28,7 @@ public interface Validator { * Method used to validate if the value is valid. * * @param value object to be validated + * @throws Exception if value is not valid. */ void validate(Object value) throws ValidationException; }