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