Exception: Venetian::BrowserInstaller::InstallError
- Inherits:
-
StandardError
- Object
- StandardError
- Venetian::BrowserInstaller::InstallError
- 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
-
#initialize(message = nil) ⇒ InstallError
constructor
A new instance of InstallError.
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( = nil) super([INSTALL_FAILED_MESSAGE, *].join(": ")) end |