Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2002-12-02 18:34:20 +0000
committerAlain Magloire2002-12-02 18:34:20 +0000
commit3d26f7b862524e0ceafb7aba241281516d214ca8 (patch)
tree749a7f4ca4211ddb0d80324e7346f9ffe02ef8d4
parenta429574e829197020b2eabb21e812ec303e00168 (diff)
downloadorg.eclipse.cdt-3d26f7b862524e0ceafb7aba241281516d214ca8.tar.gz
org.eclipse.cdt-3d26f7b862524e0ceafb7aba241281516d214ca8.tar.xz
org.eclipse.cdt-3d26f7b862524e0ceafb7aba241281516d214ca8.zip
New file for errors
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java
new file mode 100644
index 00000000000..145f56f4716
--- /dev/null
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDIErrorInfo.java
@@ -0,0 +1,21 @@
+/*
+ *(c) Copyright QNX Software Systems Ltd. 2002.
+ * All Rights Reserved.
+ *
+ */
+package org.eclipse.cdt.debug.core.cdi;
+
+/**
+ *
+ * Represents an information provided by the session when the program
+ * exited.
+ *
+ * @since Jul 10, 2002
+ */
+public interface ICDIErrorInfo extends ICDISessionObject {
+
+ /**
+ * Returns the error message.
+ */
+ public String getMessage();
+}

Back to the top