Skip to content
Snippets Groups Projects
Commit 4cf0496b authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

More detailed error message

parent 827a1c9a
No related branches found
No related tags found
No related merge requests found
......@@ -469,7 +469,11 @@ public class WeatherUtil {
}
else
{
throw new ConfigValidationException("Missing weather data");
throw new ConfigValidationException("Missing weather data. Number of observations per parameter: "
+ "TM=" + TM.size()
+ ",RR=" + RR.size()
+ ",UM=" + UM.size()
);
}
//System.out.println("First new obs timestamp = " + calculatedBT.get(0).getTimeMeasured());
BT.addAll(calculatedBT);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment