class ShellTest::ShellMethods::Agent::ReadError

Raised when Agent reads fail or timeout.

Attributes

buffer[R]

The buffer containing whatever had been read at the time of error.

Public Class Methods

new(message, buffer) click to toggle source
Calls superclass method
    # File lib/shell_test/shell_methods/agent.rb
126 def initialize(message, buffer)
127   @buffer = buffer
128   super message
129 end