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; // w w w.ja va 2s . com /** * * @author dryganets * */ public class ServiceException extends Exception { private static final long serialVersionUID = 8847349449119513892L; protected ServiceException(String detailMessage) { super(detailMessage); } protected ServiceException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }