Exception: Invoker::Errors::ProcessTerminated

Inherits:
StandardError
  • Object
show all
Defined in:
lib/invoker/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ready_fd, message) ⇒ ProcessTerminated

Returns a new instance of ProcessTerminated.



6
7
8
9
# File 'lib/invoker/errors.rb', line 6

def initialize(ready_fd, message)
  @ready_fd = ready_fd
  @message = message
end

Instance Attribute Details

#messageObject

Returns the value of attribute message.



5
6
7
# File 'lib/invoker/errors.rb', line 5

def message
  @message
end

#ready_fdObject

Returns the value of attribute ready_fd.



5
6
7
# File 'lib/invoker/errors.rb', line 5

def ready_fd
  @ready_fd
end