From 2f7dadf2eb8e9614193ec1293e688f2d4471c4b7 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 22 May 2009 14:40:27 +0000 Subject: [PATCH] Polishing git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@1233 50f2f4bb-b051-0410-bef5-90022cba6387 --- .../datasource/embedded/CannotReadScriptException.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/CannotReadScriptException.java b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/CannotReadScriptException.java index 1fdeb0d6a2b..10c95834a81 100644 --- a/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/CannotReadScriptException.java +++ b/org.springframework.jdbc/src/main/java/org/springframework/jdbc/datasource/embedded/CannotReadScriptException.java @@ -18,13 +18,18 @@ package org.springframework.jdbc.datasource.embedded; import org.springframework.core.io.support.EncodedResource; /** - * Thrown by {@link ResourceDatabasePopulator} if one of its SQL scripts could not be read during population. + * Thrown by {@link ResourceDatabasePopulator} if one of its SQL scripts could + * not be read during population. + * * @author Keith Donald + * @since 3.0 */ +@SuppressWarnings("serial") public class CannotReadScriptException extends RuntimeException { /** * Creates a new cannot read script exception. + * * @param resource the resource that could not be read from * @param cause the underlying cause of the resource access failure */