Back to project page saldo.
The source code is released under:
GNU General Public License
If you think the Android project saldo 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.adrup.saldo.bank.ica; /*from w ww .j av a 2s . com*/ import com.adrup.saldo.bank.BankException; public class IcaException extends BankException { private static final long serialVersionUID = 1L; public IcaException(String message, Throwable cause) { super(message, cause); } public IcaException(String message) { super(message); } }