Back to project page turbo-editor.
The source code is released under:
GNU General Public License
If you think the Android project turbo-editor 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 org.sufficientlysecure.rootcommands.util; /*w ww. j a v a 2s . c om*/ import java.io.IOException; public class BrokenBusyboxException extends IOException { private static final long serialVersionUID = 8337358201589488409L; public BrokenBusyboxException() { super(); } public BrokenBusyboxException(String detailMessage) { super(detailMessage); } }