diff options
| author | Keith Packard <keithp@keithp.com> | 2011-08-28 15:50:30 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2011-08-28 15:50:30 -0700 | 
| commit | 31e3255b6cbfaf95c0e97e2d1ec8de72f845994c (patch) | |
| tree | 7213069af129b6b29bc59d48ce5c1e3f336537c9 /altosui/AltosScanUI.java | |
| parent | cf72c2f5a69a736c28a9b63e124d510ef41a9f5d (diff) | |
altosui: Report error message back from libaltos
This includes changing all of the error dialogs to show the error
message rather than just the file name.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosScanUI.java')
| -rw-r--r-- | altosui/AltosScanUI.java | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/altosui/AltosScanUI.java b/altosui/AltosScanUI.java index bce4b32c..df5c51d4 100644 --- a/altosui/AltosScanUI.java +++ b/altosui/AltosScanUI.java @@ -130,8 +130,7 @@ public class AltosScanUI  	void scan_exception(Exception e) {  		if (e instanceof FileNotFoundException) {  			JOptionPane.showMessageDialog(owner, -						      String.format("Cannot open device \"%s\"", -								    device.toShortString()), +						      ((FileNotFoundException) e).getMessage(),  						      "Cannot open target device",  						      JOptionPane.ERROR_MESSAGE);  		} else if (e instanceof AltosSerialInUseException) { @@ -326,8 +325,7 @@ public class AltosScanUI  			return true;  		} catch (FileNotFoundException ee) {  			JOptionPane.showMessageDialog(owner, -						      String.format("Cannot open device \"%s\"", -								    device.toShortString()), +						      ee.getMessage(),  						      "Cannot open target device",  						      JOptionPane.ERROR_MESSAGE);  		} catch (AltosSerialInUseException si) {  | 
