class Git::TimeoutError


@api public
result.status.timeout? will be ‘true`
are available from this object.
The git command executed, status, stdout, and stderr, and the timeout duration
This error is raised when a git command takes longer than the configured timeout

def error_message = <<~MESSAGE.chomp

Returns:
  • (String) -
def error_message = <<~MESSAGE.chomp

def initialize(result, timeout_duration)

Parameters:
  • timeout_duration (Numeric) -- the amount of time the subprocess was allowed
  • result (Git::CommandLineResult) -- the result of the git command including
def initialize(result, timeout_duration)
  @timeout_duration = timeout_duration
  super(result)
end