blob: c13fd02967dfbcd257701ee1a6b73601b9446252 [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* 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
*
******************************************************************************
*/
package org.eclipse.openK.core.exceptions;
public class HttpStatusException extends Exception {
private final int httpStatus;
public HttpStatusException(int httpStatus ) {
this.httpStatus = httpStatus;
}
public int getHttpStatus() {
return httpStatus;
}
}