Back to project page base_controller.
The source code is released under:
Apache License
If you think the Android project base_controller 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.github.c77.base_driver.husky; //from www .ja v a2s . c om /** * @author jcerruti@creativa77.com (Julian Cerruti) */ public class HuskyParserException extends java.lang.Exception { private final static String BASE_MESSAGE = "Exception parsing packet"; public HuskyParserException(String reason) { super(BASE_MESSAGE + ": " + reason); } }