Uses of Class
controller.BitPayException

Packages that use BitPayException
controller   
model   
 

Uses of BitPayException in controller
 

Methods in controller that throw BitPayException
 void BitPay.authorizeClient(java.lang.String pairingCode)
          Authorize this client for use with the BitPay server.
 boolean BitPay.cancelRefundRequest(Invoice invoice, java.lang.String refundId)
          Cancel a previously submitted refund request on a BitPay invoice.
 boolean BitPay.cancelRefundRequest(java.lang.String invoiceId, java.lang.String refundId)
          Cancel a previously submitted refund request on a BitPay invoice.
 Invoice BitPay.createInvoice(Invoice invoice)
          Create a BitPay invoice using the POS facade.
 Invoice BitPay.createInvoice(Invoice invoice, java.lang.String token)
          Create a BitPay invoice.
 java.lang.String BitPay.getAccessToken(java.lang.String id)
          Retrieve a token associated with a known resource.
 java.util.List<Refund> BitPay.getAllRefunds(Invoice invoice)
          Retrieve all refund requests on a BitPay invoice.
 Invoice BitPay.getInvoice(java.lang.String invoiceId)
          Retrieve a BitPay invoice by invoice id using the public facade.
 Invoice BitPay.getInvoice(java.lang.String invoiceId, java.lang.String token)
          Retrieve a BitPay invoice by invoice id using the specified facade.
 java.util.List<Invoice> BitPay.getInvoices(java.lang.String dateStart, java.lang.String dateEnd)
          Retrieve a collection of BitPay invoices.
 Rates BitPay.getRates()
          Retrieve the exchange rate table maintained by BitPay.
 Refund BitPay.getRefund(Invoice invoice, java.lang.String refundId)
          Retrieve a previously made refund request on a BitPay invoice.
 java.lang.String BitPay.requestClientAuthorization(java.lang.String facade)
          Request a pairing code from the BitPay server.
 RefundHelper BitPay.requestRefund(Invoice invoice, java.lang.String bitcoinAddress, java.lang.Double amount, java.lang.String currency)
          Request a refund for a BitPay invoice.
 RefundHelper BitPay.requestRefund(java.lang.String invoiceId, java.lang.String bitcoinAddress)
          Request a full refund for a BitPay invoice.
 

Constructors in controller that throw BitPayException
BitPay()
          Constructor for use if the keys and SIN are managed by this library.
BitPay(com.google.bitcoin.core.ECKey ecKey)
          Constructor for use if the keys and SIN were derived external to this library.
BitPay(com.google.bitcoin.core.ECKey ecKey, java.lang.String clientName)
          Constructor for use if the keys and SIN were derived external to this library.
BitPay(com.google.bitcoin.core.ECKey ecKey, java.lang.String clientName, java.lang.String envUrl)
          Constructor for use if the keys and SIN were derived external to this library.
BitPay(java.lang.String clientName)
          Constructor for use if the keys and SIN are managed by this library.
BitPay(java.lang.String clientName, java.lang.String envUrl)
          Constructor for use if the keys and SIN are managed by this library.
 

Uses of BitPayException in model
 

Methods in model that throw BitPayException
 void Invoice.setCurrency(java.lang.String _currency)
           
 void Rates.update()