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; // ww w .j ava 2 s. c o m /** * Custom exception class for handling error conditions gracefully. * * @author John Zweng */ public class SmsFixException extends Exception { /** * Serial version UID */ private static final long serialVersionUID = -5470132218974045441L; /** * Constructor. Default constructor */ public SmsFixException() { } /** * Constructor. * * @param detailMessage * @param throwable */ public SmsFixException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } /** * Constructor. * * @param detailMessage */ public SmsFixException(String detailMessage) { super(detailMessage); } /** * Constructor. * * @param throwable */ public SmsFixException(Throwable throwable) { super(throwable); } }