Back to project page journal.
The source code is released under:
MIT License
If you think the Android project journal 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 cochrane343.journal.exceptions; /*from ww w . j a v a 2 s . c o m*/ public class IllegalUriException extends IllegalArgumentException { private static final long serialVersionUID = -432625595225149137L; private static final String DEFAULT_MESSAGE = " Unkown Uri: "; public IllegalUriException(final String uri) { super(DEFAULT_MESSAGE + uri); } public IllegalUriException(final String uri, final Throwable cause) { super(DEFAULT_MESSAGE + uri, cause); } }