blob: 5fa64536087d000c7d358e3fa71b565a9549ba28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Tasktop Technologies.
* 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.commons.xmlrpc;
import org.apache.xmlrpc.XmlRpcException;
import org.eclipse.mylyn.commons.net.SslCertificateException;
/**
* @author Steffen Pingel
*/
public class XmlRpcSslCertificateException extends XmlRpcException {
private static final long serialVersionUID = 6981133252991248441L;
public XmlRpcSslCertificateException(String message) {
super(message);
}
public XmlRpcSslCertificateException() {
super(null);
}
public XmlRpcSslCertificateException(SslCertificateException e) {
super(null);
initCause(e);
}
}