mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-03-28 14:56:28 +01:00
Save additional exception info (#604)
When a position exception was raised the info was lost of the underlying exception. See #603
This commit is contained in:
parent
d09d3f8e97
commit
27bee70634
1 changed files with 1 additions and 1 deletions
|
@ -344,7 +344,7 @@ public class DisassemblyViewer extends SourceViewer implements IPropertyChangeLi
|
|||
}
|
||||
}
|
||||
} catch (BadLocationException ble) {
|
||||
throw new IllegalArgumentException(ble.getLocalizedMessage());
|
||||
throw new IllegalArgumentException(ble.getLocalizedMessage(), ble);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue