blob: c2e8fe71e1dd25f210adf003670fb8ced89730ba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.gerrit.core.client;
import org.apache.commons.httpclient.auth.AuthScheme;
/**
* @author Steffen Pingel
*/
public class GerritHttpException extends GerritException {
private static final long serialVersionUID = 9032521978140685830L;
private AuthScheme authScheme;
private final int responseCode;
public GerritHttpException(int responseCode) {
super("HTTP Error " + responseCode); //$NON-NLS-1$
this.responseCode = responseCode;
}
public AuthScheme getAuthScheme() {
return authScheme;
}
public void setAuthScheme(AuthScheme authScheme) {
this.authScheme = authScheme;
}
public int getResponseCode() {
return responseCode;
}
}