Back to project page makler.
The source code is released under:
GNU General Public License
If you think the Android project makler 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 pl.net.newton.Makler.gpw.ex; /* w w w .j av a 2 s . c o m*/ public class GpwException extends Exception { private static final long serialVersionUID = 8212054254054897460L; public GpwException(String message) { super(message); } public GpwException(String message, Throwable cause) { super(message, cause); } public GpwException(Throwable cause) { super(cause); } }