class Phantom::ForkError
Attributes
pid[R]
pid_file[R]
Public Class Methods
new(message, pid_file)
click to toggle source
Calls superclass method
# File lib/phantom/fork_error.rb, line 5 def initialize(message, pid_file) super(message) @pid_file = pid_file @pid = File.read @pid_file end