Back to project page phonegap-plugin-wizPurchase.
The source code is released under:
MIT License
If you think the Android project phonegap-plugin-wizPurchase 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.smartmobilesoftware.util; // w w w. j a v a 2s . c o m /** * Exception thrown when encountering an invalid Base64 input character. * * @author ASMAN */ public class Base64DecoderException extends Exception { public Base64DecoderException() { super(); } public Base64DecoderException(String s) { super(s); } private static final long serialVersionUID = 1L; }