Exception: Venetian::BrowserInstaller::InstallError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/venetian/browser_installer.rb

Overview

# Install Error

Raised when the installation fails for some reason.

Constant Summary collapse

INSTALL_FAILED_MESSAGE =
"Playwright install failed. Run `rake venetian:install` manually."

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ InstallError

Returns a new instance of InstallError.



14
15
16
# File 'lib/venetian/browser_installer.rb', line 14

def initialize(message = nil)
  super([INSTALL_FAILED_MESSAGE, *message].join(": "))
end