Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.hdodenhof.xingapi.exceptions; //from ww w. ja v a 2s . com import de.hdodenhof.xingapi.models.ErrorResponse; public class ApiException extends BaseException { private final int mStatusCode; private final ErrorResponse mErrorResponse; public ApiException(int statusCode, ErrorResponse errorResponse) { mStatusCode = statusCode; mErrorResponse = errorResponse; } public int getStatusCode() { return mStatusCode; } public ErrorResponse getErrorResponse() { return mErrorResponse; } }