comparison flys-backend/src/main/java/de/intevation/flys/importer/parsers/PRFParser.java @ 3659:36edf9a71cbd

backend: Mention backend errors in importer. flys-backend/trunk@5253 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 23 Aug 2012 16:20:45 +0000
parents 509af52db23b
children 976ead36192d
comparison
equal deleted inserted replaced
3658:55c4b7442236 3659:36edf9a71cbd
366 366
367 // sort all the lists by x and index 367 // sort all the lists by x and index
368 sortLists(); 368 sortLists();
369 } 369 }
370 catch (IOException ioe) { 370 catch (IOException ioe) {
371 log.error(ioe); 371 log.error("Error reading PRF file.", ioe);
372 return false; 372 return false;
373 } 373 }
374 finally { 374 finally {
375 if (in != null) { 375 if (in != null) {
376 try { 376 try {
377 in.close(); 377 in.close();
378 } 378 }
379 catch (IOException ioe) { 379 catch (IOException ioe) {
380 log.error(ioe); 380 log.error("Error closing PRF file.", ioe);
381 } 381 }
382 } 382 }
383 } 383 }
384 384
385 return true; 385 return true;

http://dive4elements.wald.intevation.org