Changeset 14298
- Timestamp:
- 09/21/16 10:13:51 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.Instances.DataAnalysis.Views/3.3/RegressionInstanceProviderView.cs
r14286 r14298 60 60 instance = Content.ImportData(importTypeDialog.Path, importTypeDialog.ImportType, 61 61 importTypeDialog.CSVFormat); 62 } catch ( IOException ex) {62 } catch (Exception ex) { 63 63 ErrorWhileParsing(ex); 64 64 return; … … 69 69 try { 70 70 GenericConsumer.Load(instance); 71 } catch ( IOException ex) {71 } catch (Exception ex) { 72 72 ErrorWhileLoading(ex, importTypeDialog.Path); 73 73 } finally {
Note: See TracChangeset
for help on using the changeset viewer.