Back to project page markj.
The source code is released under:
GNU Lesser General Public License
If you think the Android project markj 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.markjmind.mobile.api.android.controller; /*from w w w. j av a 2s. c o m*/ /** * start : 2013.11.17<br> * <br> * * @author ??? * @version 2013.11.17 */ public class JwMapperException extends RuntimeException { public String message; private Throwable exception; public JwMapperException(String message, Throwable exception) { super(message, exception); this.message = message; this.exception = exception; } public JwMapperException(String message) { super(message); } public Throwable getCause() { return this.exception; } }