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; /* ww w . ja v a 2s . c om*/ import java.io.IOException; public class RootAccessDeniedException extends IOException { private static final long serialVersionUID = 9088998884166225540L; public RootAccessDeniedException() { super(); } public RootAccessDeniedException(String detailMessage) { super(detailMessage); } }