class Xooa::Exception::XooaRequestTimeoutException

Attributes

resultId[RW]
resultUrl[RW]

Public Class Methods

new(resultId, resultUrl) click to toggle source

Initialize XooaRequestTimeoutException @param resultId result id for the transaction in pending state @param errorMessage result url for the transaction in pending state @return XooaRequestTimeoutException

# File lib/xooa/exception/XooaRequestTimeoutException.rb, line 29
def initialize(resultId, resultUrl)
  @resultId = resultId
  @resultUrl = resultUrl
end

Public Instance Methods

display() click to toggle source

display the details for the XooaResultTimeoutException

# File lib/xooa/exception/XooaRequestTimeoutException.rb, line 35
def display
  puts("Result Id - #{@resultId}")
  puts("Result Url - #{@resultUrl}")
end