Changeset 782 in josm
- Timestamp:
- 2008-08-15T14:03:33+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/ProgressInputStream.java
r627 r782 1 1 // License: GPL. Copyright 2007 by Immanuel Scholz and others 2 2 package org.openstreetmap.josm.io; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 3 5 4 6 import java.io.IOException; … … 33 35 } catch (IOException e) { 34 36 if (con.getHeaderField("Error") != null) 35 throw new OsmServerException( con.getHeaderField("Error"));37 throw new OsmServerException(tr(con.getHeaderField("Error"))); 36 38 throw e; 37 39 }
Note:
See TracChangeset
for help on using the changeset viewer.