class Rookout::Exceptions::RookSetTracepointFailed

Public Class Methods

new(target_line, error) click to toggle source
Calls superclass method Rookout::Exceptions::ToolException::new
# File lib/rookout/exceptions.rb, line 123
def initialize target_line, error
  super "Failed to set TracePoint on line #{target_line} due to #{error.message}",
        { target_line: target_line, error: error }
end