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