Changeset 163
- Timestamp:
- 12/13/07 15:08:35 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
bbtracker/trunk/src/org/bbtracker/mobile/gps/Gps.java
r159 r163 118 118 } catch (final IllegalArgumentException ex) { 119 119 // happens with malformed URLs 120 Log.log(this, ex, " Error opening connection to" + url);120 Log.log(this, ex, "Malformed URL: " + url); 121 121 throw new LocationException("Error while opening Bluetooth connection: " + ex.getMessage()); 122 122 } catch (final IOException ex) { 123 123 Log.log(this, ex, "Error opening connection to " + url); 124 throw new LocationException(" Error while opening Bluetooth connection: " + ex.getMessage());124 throw new LocationException("Failed to connect to GPS puck, is the device switched on?"); 125 125 } 126 126 mThread = new Thread(new DataReader(inputStream, streamConnection));
Note: See TracChangeset
for help on using the changeset viewer.