Back to project page bankomatinfos.
The source code is released under:
GNU General Public License
If you think the Android project bankomatinfos 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 at.zweng.bankomatinfos.exceptions; //from ww w. java 2 s . com /** * Simple exception * * @author Johannes Zweng <johannes@zweng.at> */ public class NoSmartCardException extends Exception { private static final long serialVersionUID = -2228117684538514835L; public NoSmartCardException() { } public NoSmartCardException(String detailMessage) { super(detailMessage); } public NoSmartCardException(Throwable throwable) { super(throwable); } public NoSmartCardException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }