Back to project page androidtestdebug.
The source code is released under:
MIT License
If you think the Android project androidtestdebug 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 temp; //from ww w . j a v a2s .c om @SuppressWarnings("serial") public class CaseErrorException extends Exception { public CaseErrorException(String message) { this(message, null); } public CaseErrorException(Exception inner){ this(null, inner); } public CaseErrorException(String message, Exception inner){ super(message == null ? "????????????????????InnerException????" : String.format("???????????????????????????" + "%1$s?????InnerException????", message), inner); } }