@ -33,12 +33,12 @@ public class ScriptStatementFailedException extends ScriptException {
@@ -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 r esource the resource from which the SQL statement was read
* the n < sup > th < / sup > statement present in the resource )
* @param encodedR esource the resource from which the SQL statement was read
* @param cause the underlying cause of the failure
* /
public ScriptStatementFailedException ( String stmt , int stmtNumber , EncodedResource r esource, Throwable cause ) {
super ( buildErrorMessage ( stmt , stmtNumber , r esource) , cause ) ;
public ScriptStatementFailedException ( String stmt , int stmtNumber , EncodedResource encodedR esource, Throwable cause ) {
super ( buildErrorMessage ( stmt , stmtNumber , encodedR esource) , cause ) ;
}
/ * *