Back to project page Tacere.
The source code is released under:
MIT License
If you think the Android project Tacere listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (c) 2014 Jonathan Nelson/* ww w . j a v a 2 s . c om*/ * Released under the BSD license. For details see the COPYING file. */ package org.ciasaboark.tacere.billing.google; /** * Exception thrown when encountering an invalid Base64 input character. * * @author nelson */ public class Base64DecoderException extends Exception { private static final long serialVersionUID = 1L; public Base64DecoderException() { super(); } public Base64DecoderException(String s) { super(s); } }