blob: aa4dcfdba475c57815ca16a6004e6c0c6c84d207 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2006 IBM Corporation.
* 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
*
* Contributors:
* IBM Corporation - Initial Implementation
*
*****************************************************************************/
package org.eclipse.ptp.remotetools.exception;
/**
* Describes remote operations errors. This do not include errors generated by a
* user-generated remote command that failed.
*
* @author Richard Maciel
*
*/
public class RemoteOperationException extends RemoteException {
private static final long serialVersionUID = 1L;
/**
*
*/
public RemoteOperationException() {
// TODO Auto-generated constructor stub
}
/**
* @param message
*/
public RemoteOperationException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* @param cause
*/
public RemoteOperationException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* @param message
* @param cause
*/
public RemoteOperationException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}