blob: 4d67e64e27569e086e0a801704c463dd491da293 [file] [log] [blame]
package org.eclipse.ptp.proxy.debug.command;
public class ProxyDebugInterruptCommand extends AbstractProxyDebugCommand implements IProxyDebugCommand {
public ProxyDebugInterruptCommand(String bits) {
super(INTERRUPT, bits);
}
public ProxyDebugInterruptCommand(int transID, String[] args) {
super(INTERRUPT, transID, args);
}
}