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; // w w w .j a v a 2 s . com /** * Created by andre on 4/30/14. */ public class DataClassNotFoundException extends RuntimeException { public DataClassNotFoundException() { } public DataClassNotFoundException(String detailMessage) { super(detailMessage); } public DataClassNotFoundException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public DataClassNotFoundException(Throwable throwable) { super(throwable); } }