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

com.citrix.sharefile.api.exceptions.SFServerException Maven / Gradle / Ivy

package com.citrix.sharefile.api.exceptions;


@SuppressWarnings("serial")
public class SFServerException extends SFSDKException
{
    private final int httpErrorCode;

	public SFServerException(int httpErrorCode, String detailedMessage)
	{
		super(detailedMessage);
        this.httpErrorCode = httpErrorCode;
	}

    public int getHttpResponseCode()
    {
        return httpErrorCode;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy