Polish Javadoc for ScriptStatementFailedException constructor
Issue: SPR-12752
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user