Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-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 io.kickflip.sdk.exception; //from w w w. j a v a 2 s . co m import java.io.IOException; /** * Kickflip Exception */ public class KickflipException extends IOException{ private String mMessage; private int mCode; public KickflipException(){ mMessage = "An unknown error occurred"; mCode = 0; } public KickflipException(String message, int code){ mMessage = message; mCode = code; } public String getMessage() { return mMessage; } public int getCode() { return mCode; } }