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:
parent
a046952878
commit
c15f8b149f
1 changed files with 14 additions and 0 deletions
|
@ -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());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue