Fixing exception message

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/accounting/accounting-aggregator-se-plugin@154628 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2017-09-26 15:00:05 +00:00
parent 1c7574c4f3
commit 891d15e355
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public abstract class DocumentElaboration {
br.close();
in.close();
fstream.close();
throw new Exception("File line " + elaborated + " > " + rowToBeElaborated + ". This is really strange and should not occur. Stopping execution");
throw new Exception("Elaborated file line is number " + elaborated + " > " + rowToBeElaborated + " which should be the total number of rows to elaborate. This is really strange and should not occur. Stopping execution");
}
}
logger.info("{} - Elaborated {} rows of {} ({}%)", aggregationStatus.getAggregationInfo(), elaborated, rowToBeElaborated, 100);