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

Bridge between MIException and CDIException

This commit is contained in:
Alain Magloire 2002-12-05 16:01:31 +00:00
parent a046952878
commit c15f8b149f

View file

@ -0,0 +1,14 @@
package org.eclipse.cdt.debug.mi.core.cdi;
import org.eclipse.cdt.debug.core.cdi.CDIException;
import org.eclipse.cdt.debug.mi.core.MIException;
/**
*/
public class MI2CDIException extends CDIException {
public MI2CDIException(MIException e) {
super(e.getMessage(), e.getLogMessage());
}
}