1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

signal method should throw exception.

This commit is contained in:
Alain Magloire 2003-02-03 19:53:09 +00:00
parent d87cffe93a
commit bcbe3e38d9

View file

@ -6,6 +6,8 @@
package org.eclipse.cdt.debug.core.cdi.model; package org.eclipse.cdt.debug.core.cdi.model;
import org.eclipse.cdt.debug.core.cdi.CDIException;
/** /**
* *
* Represents a signal. * Represents a signal.
@ -49,5 +51,5 @@ public interface ICDISignal extends ICDIObject {
* *
* Method signal. * Method signal.
*/ */
void signal(); void signal() throws CDIException ;
} }