Back to project page Android-Print-SDK.
The source code is released under:
MIT License
If you think the Android project Android-Print-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 ly.kite.print; //from w ww . j a va 2 s .co m /** * Created by deonbotha on 02/02/2014. */ public class KitePrintSDKException extends Exception { static enum ErrorCode { GENERIC_ERROR }; private final ErrorCode code; public KitePrintSDKException(String message) { this(message, ErrorCode.GENERIC_ERROR); } public KitePrintSDKException(String message, ErrorCode code) { super(message); this.code = code; } }