Exception: OperationInProgressError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- OperationInProgressError
- Defined in:
- exceptions.rb
Overview
Raised when another Homebrew operation is already in progress.
Instance Method Summary collapse
-
#initialize(name) ⇒ OperationInProgressError
constructor
A new instance of OperationInProgressError.
Constructor Details
#initialize(name) ⇒ OperationInProgressError
Returns a new instance of OperationInProgressError.
379 380 381 382 383 384 385 386 387 |
# File 'exceptions.rb', line 379 def initialize(name) = <<~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 end |