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 a 2s . c o m /** * Exception thrown when an unknown loader id is encountered in one of * the loader callback methods. * * @author cochrane343 * @since 1.0 */ public class IllegalLoaderIdException extends IllegalArgumentException { private static final long serialVersionUID = -1493818706175313781L; private static final String DEFAULT_MESSAGE = "Unkown loader id: "; public IllegalLoaderIdException(final int loaderId) { super(DEFAULT_MESSAGE + loaderId); } public IllegalLoaderIdException(final int loaderId, final Throwable cause) { super(DEFAULT_MESSAGE + loaderId, cause); } }