Back to project page Android-CleanArchitecture.
The source code is released under:
Apache License
If you think the Android project Android-CleanArchitecture listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright (C) 2014 android10.org. All rights reserved. * @author Fernando Cejas (the android10 coder) *//*from ww w . j a v a 2 s . c o m*/ package com.fernandocejas.android10.sample.data.exception; /** * Exception throw by the application when a User search can't return a valid result. */ public class UserNotFoundException extends Exception { public UserNotFoundException() { super(); } public UserNotFoundException(final String message) { super(message); } public UserNotFoundException(final String message, final Throwable cause) { super(message, cause); } public UserNotFoundException(final Throwable cause) { super(cause); } }