1
1
/**
2
- * Copyright 2009-2017 the original author or authors.
2
+ * Copyright 2009-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ public BatchExecutorException(String message,
43
43
this .batchResult = batchResult ;
44
44
}
45
45
46
- /*
46
+ /**
47
47
* Returns the BatchUpdateException that caused the nested executor
48
48
* to fail. That exception contains an array of row counts
49
49
* that can be used to determine exactly which statement of the
@@ -55,7 +55,7 @@ public BatchUpdateException getBatchUpdateException() {
55
55
return batchUpdateException ;
56
56
}
57
57
58
- /*
58
+ /**
59
59
* Returns a list of BatchResult objects. There will be one entry
60
60
* in the list for each successful sub-executor executed before the failing
61
61
* executor.
@@ -67,7 +67,7 @@ public List<BatchResult> getSuccessfulBatchResults() {
67
67
return successfulBatchResults ;
68
68
}
69
69
70
- /*
70
+ /**
71
71
* Returns the SQL statement that caused the failure
72
72
* (not the parameterArray)
73
73
*
@@ -77,7 +77,7 @@ public String getFailingSqlStatement() {
77
77
return batchResult .getSql ();
78
78
}
79
79
80
- /*
80
+ /**
81
81
* Returns the statement id of the statement that caused the failure
82
82
*
83
83
* @return the statement id
0 commit comments