Back to project page ShellAndroid.
The source code is released under:
Apache License
If you think the Android project ShellAndroid 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 z.hol.shellandroid.exception; /*w w w .j a v a 2 s. com*/ /** * The exception will throw when catch a exception on execute cmd in shell * @author holmes * */ public class ShellExecuteException extends RuntimeException{ /** * */ private static final long serialVersionUID = -6671955947677707880L; public ShellExecuteException() { super(); // This is Auto-generated constructor stub } public ShellExecuteException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); // This is Auto-generated constructor stub } public ShellExecuteException(String detailMessage) { super(detailMessage); // This is Auto-generated constructor stub } public ShellExecuteException(Throwable throwable) { super(throwable); // This is Auto-generated constructor stub } }