Back to project page ghetto-unlock.
The source code is released under:
Apache License
If you think the Android project ghetto-unlock 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.nick.ghettounlock.muscle; /*from www .j av a 2 s. c om*/ public class MuscleException extends RuntimeException { private static final long serialVersionUID = 4147940124038306615L; public MuscleException(String message) { super(message); } public MuscleException(short sw) { super("SW: " + String.format("%02X", sw)); } }