Android Open Source - SMSSentTime Sms Not Found 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;
/*from  www  . j  ava  2s.  c  o  m*/
/**
 * Custom exception class for indicating that no matching sms was found.
 * 
 * @author John Zweng
 */
public class SmsNotFoundException extends SmsFixException {

  /**
   * Serial version UID for serializable objects
   */
  private static final long serialVersionUID = 2650351914807572663L;

  /**
   * Default constructor
   */
  public SmsNotFoundException() {
  }

  /**
   * Constructor.
   * 
   * @param detailMessage
   * @param throwable
   */
  public SmsNotFoundException(String detailMessage, Throwable throwable) {
    super(detailMessage, throwable);
  }

  /**
   * Constructor.
   * 
   * @param detailMessage
   */
  public SmsNotFoundException(String detailMessage) {
    super(detailMessage);
  }

  /**
   * Constructor.
   * 
   * @param throwable
   */
  public SmsNotFoundException(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