blob: 76fd033a11772192b6b8272a930c47f46ed0ef45 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2010 Steffen Pingel 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
*
* Contributors:
* Steffen Pingel - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.commons.xmlrpc;
import org.apache.xmlrpc.XmlRpcException;
/**
* Indicates that an exception on the repository side has been encountered while processing the request.
*
* @author Steffen Pingel
*/
public class XmlRpcRemoteException extends XmlRpcException {
private static final long serialVersionUID = -6761365344287289624L;
public XmlRpcRemoteException() {
super(null);
}
public XmlRpcRemoteException(String message) {
super(message);
}
public XmlRpcRemoteException(Throwable cause) {
super("Remote exception", cause); //$NON-NLS-1$
}
public XmlRpcRemoteException(String message, Throwable cause) {
super(message, cause);
}
}