Back to project page vocabulary-list.
The source code is released under:
Apache License
If you think the Android project vocabulary-list 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.rulych.vocabularylist.util; /* w w w .java2s .co m*/ import java.util.Locale; public class BaseRuntimeException extends RuntimeException { public BaseRuntimeException() { } public BaseRuntimeException(Throwable throwable) { super(throwable); } public BaseRuntimeException(Throwable throwable, String format, Object... args) { super(String.format(Locale.US, format, args), throwable); } public BaseRuntimeException(String format, Object... args) { super(String.format(Locale.US, format, args)); } }