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

Improved error message

parent 0c7d9558
No related branches found
No related tags found
No related merge requests found
......@@ -14,5 +14,6 @@ That way multiple projects can share the same settings (useful for formatting ru
Any value defined here will override the pom.xml file value but is only applicable to the current project.
-->
<netbeans.hint.license>nibio_open_source_license.ftl</netbeans.hint.license>
<netbeans.hint.jdkPlatform>JDK_1.8_SUN</netbeans.hint.jdkPlatform>
</properties>
</project-shared-configuration>
......@@ -821,7 +821,7 @@ public class WeatherUtil {
//System.out.println("Missing values=" + missingValues);
if(missingValues > maximumMissingValues)
{
throw new WeatherObservationListException("More than three missing values for "
throw new WeatherObservationListException("More than " + maximumMissingValues + " missing values for "
+ "parameter " + obsList.get(0).getElementMeasurementTypeId()
+ " between " + obsList.get(i-1).getTimeMeasured() + " and "
+ obsList.get(i).getTimeMeasured() + ". Can't fix this!");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment