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 w ww . j a v a2s. com*/ public class IllegalDisplayModeException extends IllegalArgumentException { private static final long serialVersionUID = -8045541150567932118L; private static final String DEFAULT_MESSAGE = "Unkown display mode: "; public IllegalDisplayModeException(final String displayMode) { super(DEFAULT_MESSAGE + displayMode); } public IllegalDisplayModeException(final String displayMode, final Throwable cause) { super(DEFAULT_MESSAGE + displayMode, cause); } }