Back to project page sunshine.
The source code is released under:
Apache License
If you think the Android project sunshine 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.zmb.sunshine.data; //from www. ja v a2s .c om import java.io.IOException; /** * This exception indicates that the weather data returned * by a web service couldn't be parsed. */ public class WeatherParseException extends IOException { private final String mData; private final Exception mInnerException; public WeatherParseException(String data, Exception innerException) { mData = data; mInnerException = innerException; } }