Android Open Source - SMSSentTime Sms Fix Exception






From Project

Back to project page SMSSentTime.

License

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.

Java Source Code

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);
  }

}




Java Source Code List

at.zweng.smssenttimefix.Constants.java
at.zweng.smssenttimefix.DebugSettingsActivity.java
at.zweng.smssenttimefix.SDCardLogger.java
at.zweng.smssenttimefix.SDNotMountedException.java
at.zweng.smssenttimefix.SmsFixException.java
at.zweng.smssenttimefix.SmsNotFoundException.java
at.zweng.smssenttimefix.SmsReceiver.java
at.zweng.smssenttimefix.SmsSentTimeFixActivity.java
at.zweng.smssenttimefix.SmsTimeFixPrefs.java
at.zweng.smssenttimefix.SmsTimeFixService.java
at.zweng.smssenttimefix.Util.java