Back to project page wizapp.
The source code is released under:
MIT License
If you think the Android project wizapp 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.wb.wizapp.ex; //from w w w. j ava 2 s . c o m public class WizError extends Exception { private static final long serialVersionUID = 1L; public WizError() { super(); } public WizError(String detailMessage) { super(detailMessage); } public WizError(Throwable throwable) { super(throwable); } public WizError(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }