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; /*from w w w. ja va 2 s . c o m*/ public class UnsupportedArchitectureException extends Exception { private static final long serialVersionUID = 7826528799780001655L; public UnsupportedArchitectureException() { super(); } public UnsupportedArchitectureException(String detailMessage) { super(detailMessage); } }