diff options
Diffstat (limited to 'altosui/AltosLanded.java')
| -rw-r--r-- | altosui/AltosLanded.java | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosLanded.java b/altosui/AltosLanded.java index 50e6b542..4dd9a2dd 100644 --- a/altosui/AltosLanded.java +++ b/altosui/AltosLanded.java @@ -250,7 +250,7 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio  						FileInputStream in = new FileInputStream(file);  						records = new AltosTelemetryIterable(in);  					} else { -						throw new FileNotFoundException(); +						throw new FileNotFoundException(filename);  					}  					try {  						new AltosGraphUI(records, filename); @@ -259,7 +259,7 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio  					}  				} catch (FileNotFoundException fe) {  					JOptionPane.showMessageDialog(null, -								      filename, +								      fe.getMessage(),  								      "Cannot open file",  								      JOptionPane.ERROR_MESSAGE);  				}  | 
