blob: 53964eaf1aa7a0c54a1a10132d45e194c6582ade [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2017 Frank Becker 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:
* Frank Becker - initial API and implementation
* Red Hat Inc - modified to handle resource moved permanently
*******************************************************************************/
package org.eclipse.linuxtools.internal.mylyn.osio.rest.core;
import org.apache.http.Header;
public class OSIORestResourceMovedPermanentlyException extends OSIORestException {
private static final long serialVersionUID = 5227546210820677763L;
private Header header;
public OSIORestResourceMovedPermanentlyException(Header header) {
this.header = header;
}
public OSIORestResourceMovedPermanentlyException(Header header, String message) {
super(message);
this.header = header;
}
public OSIORestResourceMovedPermanentlyException(Header header, Throwable cause) {
super(cause);
this.header = header;
}
public OSIORestResourceMovedPermanentlyException(Header header, String message, Throwable cause) {
super(message, cause);
this.header = header;
}
public Header getHeader() {
return header;
}
}