class TestRescueAgent::TestRescueClient::FileRunException
Attributes
description[R]
failure_details[R]
file_run_id[R]
id[R]
location[R]
suite_run_id[R]
Public Class Methods
new(client, attributes={})
click to toggle source
# File lib/test_rescue_agent/test_rescue_client/file_run_exception.rb, line 6 def initialize(client, attributes={}) @client = client @id = attributes["id"] @suite_run_id = attributes["suite_run_id"] @file_run_id = attributes["file_run_id"] @description = attributes["description"] @location = attributes["location"] @failure_details = attributes["failure_details"] end