blob: a3fa0c4c0b09f28dabec741f5f6b005c6f8a0519 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Oak Ridge National Laboratory and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.remote.internal.proxy.server.commands;
import org.eclipse.remote.proxy.core.exceptions.ProxyException;
public abstract class AbstractServerCommand {
public abstract void exec() throws ProxyException;
}