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 w w w .ja va2 s .co m*/ /** * Created by andre on 5/1/14. */ public class UnableToSignUpException extends Exception { public UnableToSignUpException() { } public UnableToSignUpException(String detailMessage) { super(detailMessage); } public UnableToSignUpException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public UnableToSignUpException(Throwable throwable) { super(throwable); } }