mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-05 08:05:24 +02:00
Bug 45203. Include call stack in the error message.
This commit is contained in:
parent
9218e9772d
commit
5de251e861
1 changed files with 3 additions and 2 deletions
|
@ -501,8 +501,9 @@ public class IncludeOrganizer {
|
|||
declarationText.append(variable.getName());
|
||||
declarationText.append(';');
|
||||
} else {
|
||||
CUIPlugin.logError("Unexpected type of binding " + binding.getName() + //$NON-NLS-1$
|
||||
" - " + binding.getClass().getSimpleName()); //$NON-NLS-1$
|
||||
CUIPlugin.log(new IllegalArgumentException(
|
||||
"Unexpected type of binding " + binding.getName() + //$NON-NLS-1$
|
||||
" - " + binding.getClass().getSimpleName())); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
// Append the closing curly brackets from the namespaces (if any).
|
||||
|
|
Loading…
Add table
Reference in a new issue