All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osiam.client.exception.OsiamRequestException Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package org.osiam.client.exception;

public class OsiamRequestException extends OsiamClientException {

    private static final long serialVersionUID = 2773048845284685144L;
    private final int httpStatusCode;

    public OsiamRequestException(int httpStatusCode, String message) {
        super(message);
        this.httpStatusCode = httpStatusCode;
    }

    public int getHttpStatusCode() {
        return httpStatusCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy