Android Open Source - injectextra Inject Extra Exception






From Project

Back to project page injectextra.

License

The source code is released under:

Apache License

If you think the Android project injectextra 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 com.github.stephanenicolas.injectextra;
//from ww w.ja  va2 s .  co  m
/**
 * An exception that can be thrown by the {@link InjectExtraProcessor}.
 */
public class InjectExtraException extends Exception {
  public InjectExtraException(String message) {
    super(message);
  }

  public InjectExtraException(String message, Throwable cause) {
    super(message, cause);
  }
}




Java Source Code List

com.example.injectextra.MainActivity.java
com.example.injectextra.SecondActivity.java
com.github.stephanenicolas.injectextra.InjectExtraException.java
com.github.stephanenicolas.injectextra.InjectExtraProcessor.java
com.github.stephanenicolas.injectextra.InjectExtra.java