Polish Javadoc for ScriptStatementFailedException constructor

Issue: SPR-12752
This commit is contained in:
Sam Brannen
2015-02-28 00:12:53 +01:00
parent 540d8792fe
commit 23d52d5e35

View File

@@ -33,12 +33,12 @@ public class ScriptStatementFailedException extends ScriptException {
* Construct a new {@code ScriptStatementFailedException}.
* @param stmt the actual SQL statement that failed
* @param stmtNumber the statement number in the SQL script (i.e.,
* the nth statement present in the resource)
* @param resource the resource from which the SQL statement was read
* the n<sup>th</sup> statement present in the resource)
* @param encodedResource the resource from which the SQL statement was read
* @param cause the underlying cause of the failure
*/
public ScriptStatementFailedException(String stmt, int stmtNumber, EncodedResource resource, Throwable cause) {
super(buildErrorMessage(stmt, stmtNumber, resource), cause);
public ScriptStatementFailedException(String stmt, int stmtNumber, EncodedResource encodedResource, Throwable cause) {
super(buildErrorMessage(stmt, stmtNumber, encodedResource), cause);
}
/**