Back to project page Learn-From-Me.
The source code is released under:
Apache License
If you think the Android project Learn-From-Me 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.overnightApps.myapplication.app.dao.exceptions; //from www .j a v a 2 s . co m /** * Created by andre on 4/20/14. */ public class SavedUserIsNotFoundOnBackEndException extends Exception { public SavedUserIsNotFoundOnBackEndException() { } public SavedUserIsNotFoundOnBackEndException(String detailMessage) { super(detailMessage); } public SavedUserIsNotFoundOnBackEndException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public SavedUserIsNotFoundOnBackEndException(Throwable throwable) { super(throwable); } }