Back to project page my-wallpaper.
The source code is released under:
MIT License
If you think the Android project my-wallpaper 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 com.koonen.photostream.api; /*from w ww.j a v a2 s . c o m*/ /** * * @author Glick * */ public class ServiceNetworkException extends ServiceException { private static final long serialVersionUID = 5679809989593207185L; private static final String MESSAGE_FORMAT = "Network problem. Message details:\n{0}"; public ServiceNetworkException(String detailMessage) { super(String.format(MESSAGE_FORMAT, detailMessage)); } public ServiceNetworkException(String detailMessage, Throwable throwable) { super(String.format(MESSAGE_FORMAT, detailMessage), throwable); } }