class Invoker::Errors::ProcessTerminated

Attributes

message[RW]
ready_fd[RW]

Public Class Methods

new(ready_fd, message) click to toggle source
# File lib/invoker/errors.rb, line 6
def initialize(ready_fd, message)
  @ready_fd = ready_fd
  @message = message
end