Android Open Source - balanced-android Funding Instrument Not Valid Exception






From Project

Back to project page balanced-android.

License

The source code is released under:

MIT License

If you think the Android project balanced-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.balancedpayments.android.exception;
//from  w  w w .jav a  2s . c  o  m
/**
 * Custom exception type for card not validated error from Balanced Payments
 * 
 * @author Ben Mills
 */
public class FundingInstrumentNotValidException extends Exception {
   public FundingInstrumentNotValidException(String message) {
      super(message);
   }
}




Java Source Code List

com.balancedpayments.android.BalancedTest.java
com.balancedpayments.android.Balanced.java
com.balancedpayments.android.BankAccountTest.java
com.balancedpayments.android.BankAccount.java
com.balancedpayments.android.CardTest.java
com.balancedpayments.android.Card.java
com.balancedpayments.android.FundingInstrument.java
com.balancedpayments.android.Utilities.java
com.balancedpayments.android.exception.CreationFailureException.java
com.balancedpayments.android.exception.FundingInstrumentNotValidException.java