Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/transition/TransitionBase.java @ 192:17987acf20d0
Correct misspelled Exception-Message as an Result of fixing issue35
gnv-artifacts/trunk@240 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Tim Englich <tim.englich@intevation.de> |
---|---|
date | Mon, 19 Oct 2009 10:25:54 +0000 |
parents | baaa1618fa27 |
children | 63f65fb9f210 |
comparison
equal
deleted
inserted
replaced
191:d436c8b27ae3 | 192:17987acf20d0 |
---|---|
209 if (valid) { | 209 if (valid) { |
210 this.setSelection(tmpItem); | 210 this.setSelection(tmpItem); |
211 this.inputData.put(tmpItem.getName(), tmpItem); | 211 this.inputData.put(tmpItem.getName(), tmpItem); |
212 } else { | 212 } else { |
213 String errMsg = "Wrong input for " + tmpItem.getValue() | 213 String errMsg = "Wrong input for " + tmpItem.getValue() |
214 + "is not an " + inputValue.getType() | 214 + " is not an " + inputValue.getType() |
215 + " Value."; | 215 + " Value."; |
216 log.warn(errMsg); | 216 log.warn(errMsg); |
217 throw new TransitionException(errMsg); | 217 throw new TransitionException(errMsg); |
218 } | 218 } |
219 | 219 |