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; // ww w. j av a2 s .co m /** * Created by ruenzuo on 08/05/14. */ public class NotFoundInMemoryException extends Exception { public NotFoundInMemoryException(String message) { super(message); } }