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