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 .j a v a 2s . c om /** * * @author dryganets * */ public class UserNotFoundException extends ServiceException { private static final long serialVersionUID = -2452895792705200301L; private static final String MESSAGE_FORMAT = "User with name %s not found"; public UserNotFoundException(String userName) { super(String.format(MESSAGE_FORMAT, userName)); } public UserNotFoundException(String userName, Throwable throwable) { super(String.format(MESSAGE_FORMAT, userName), throwable); } }