class Buckaruby::NonRefundableTransactionException

Exception raised when trying to refund a non refundable transaction.

Attributes

transaction_id[R]

Public Class Methods

new(transaction_id) click to toggle source
Calls superclass method
# File lib/buckaruby/exception.rb, line 76
def initialize(transaction_id)
  @transaction_id = transaction_id

  message = "Not a refundable transaction: #{transaction_id}"
  super(message)
end