Back to project page android-facade-example.
The source code is released under:
MIT License
If you think the Android project android-facade-example 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.ruenzuo.weatherapp.extensions; //from w w w . ja v a2 s .c o m /** * Created by ruenzuo on 08/05/14. */ public class NotFoundInDatabaseException extends Exception { public NotFoundInDatabaseException(String message) { super(message); } }