Back to project page filmster.
The source code is released under:
Apache License
If you think the Android project filmster 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 com.doodeec.filmster.ServerCommunicator.ServerRequest; /*from w w w . ja v a 2 s . com*/ /** * Created by Dusan Doodeec Bartos on 26.10.2014. * * Server/Client error response * Used for both server error responses and successful server responses which lead to incorrect data -> client error responses */ public class ErrorResponse { private String message; private String stack; private String serverException; private Integer errorCode; public ErrorResponse(String errorMessage) { this.message = errorMessage; } public String getMessage() { return message; } public String getStack() { return stack; } public String getServerException() { return serverException; } public Integer getErrorCode() { return errorCode; } }