changed db-tag-processing to csv-file
This commit is contained in:
parent
60c99500fa
commit
58e9ec301b
2 changed files with 5 additions and 5 deletions
|
|
@ -105,7 +105,7 @@ public class OsmParser extends MapCreatorBase {
|
|||
try {
|
||||
nListener.nextNode(n);
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("error writing node: " + e);
|
||||
throw new RuntimeException("error writing node: " + e, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -116,7 +116,7 @@ public class OsmParser extends MapCreatorBase {
|
|||
try {
|
||||
wListener.nextWay(w);
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("error writing way: " + e);
|
||||
throw new RuntimeException("error writing way: " + e, e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue