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 w w w . j a v a 2 s . c o m*/ /** * Exception during BER-TLV parsing * * @author Johannes Zweng <johannes@zweng.at> */ public class TlvParsingException extends Exception { private static final long serialVersionUID = -6402896717957462391L; public TlvParsingException() { } public TlvParsingException(String detailMessage) { super(detailMessage); } public TlvParsingException(Throwable throwable) { super(throwable); } public TlvParsingException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }