Back to project page SMSSentTime.
The source code is released under:
GNU General Public License
If you think the Android project SMSSentTime 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 at.zweng.smssenttimefix; //from w w w . j a va2 s . c om /** * @author 'Johannes Zweng, <johnny@zweng.at>' * */ public class SDNotMountedException extends Exception { /** * serial version uid */ private static final long serialVersionUID = 8918041460330499214L; public SDNotMountedException() { super(); } public SDNotMountedException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public SDNotMountedException(String detailMessage) { super(detailMessage); } public SDNotMountedException(Throwable throwable) { super(throwable); } }