Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2008-04-19 18:06:56 +0000
committerSergey Prigogin2008-04-19 18:06:56 +0000
commit4109b34df6a67857f0f35e30ba4f0bf51295707f (patch)
treeb4e96af25b3f12bf1965d1e63fe17bb08e1315ae /core/org.eclipse.cdt.core/parser
parent1356f3ffea6aaa0f4d2ae59128d88e4a781421d4 (diff)
downloadorg.eclipse.cdt-4109b34df6a67857f0f35e30ba4f0bf51295707f.tar.gz
org.eclipse.cdt-4109b34df6a67857f0f35e30ba4f0bf51295707f.tar.xz
org.eclipse.cdt-4109b34df6a67857f0f35e30ba4f0bf51295707f.zip
More informative exception.
Diffstat (limited to 'core/org.eclipse.cdt.core/parser')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPBinding.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPBinding.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPBinding.java
index 5d81c73ceb7..20048b41655 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPBinding.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/dom/cpp/PDOMCPPBinding.java
@@ -75,6 +75,6 @@ abstract class PDOMCPPBinding extends PDOMBinding implements ICPPBinding {
}
public boolean isGloballyQualified() throws DOMException {
- throw new PDOMNotImplementedError();
+ throw new PDOMNotImplementedError("In " + getClass().getCanonicalName()); //$NON-NLS-1$
}
}

Back to the top