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