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; // w w w .j a v a2s . c o m public class MissingFragmentArgumentException extends IllegalArgumentException { private static final long serialVersionUID = -7874249978389252256L; private static final String DEFAULT_MESSAGE = "Missing fragment argument: "; public MissingFragmentArgumentException(final String argumentKey) { super(DEFAULT_MESSAGE + argumentKey); } public MissingFragmentArgumentException(final String argumentKey, final Throwable cause) { super(DEFAULT_MESSAGE + argumentKey, cause); } }