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(); +}