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.lf; //from w w w .j a v a 2s . c o m import com.adrup.saldo.bank.BankException; public class LfBankException extends BankException { private static final long serialVersionUID = 1L; public LfBankException(String message, Throwable cause) { super(message, cause); } public LfBankException(String message) { super(message); } }