Back to project page amanaje.
The source code is released under:
Apache License
If you think the Android project amanaje 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.amanaje.commons; /*from w ww . ja v a 2 s .c o m*/ public class AppException extends Exception { private static final long serialVersionUID = -9217036014255718209L; public AppException(){ super(); } public AppException(Exception e){ super(e); } public AppException(String message){ super(message); } public AppException(String message, Exception e){ super(message, e); } }