Exception: OperationInProgressError Private

Inherits:
RuntimeError
  • Object
show all
Defined in:
exceptions.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Raised when another Homebrew operation is already in progress.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ OperationInProgressError

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns a new instance of OperationInProgressError.



365
366
367
368
369
370
371
372
373
# File 'exceptions.rb', line 365

def initialize(name)
  message = <<~EOS
    Operation already in progress for #{name}
    Another active Homebrew process is already using #{name}.
    Please wait for it to finish or terminate it to continue.
  EOS

  super message
end