Exception: Ferrum::InvalidScreenshotFormatError
- Defined in:
- lib/ferrum/errors.rb
Overview
Raised when the :format option passed to a screenshot call is not one
of the supported formats.
Instance Method Summary collapse
-
#initialize(format) ⇒ InvalidScreenshotFormatError
constructor
A new instance of InvalidScreenshotFormatError.
Constructor Details
#initialize(format) ⇒ InvalidScreenshotFormatError
Returns a new instance of InvalidScreenshotFormatError.
120 121 122 123 |
# File 'lib/ferrum/errors.rb', line 120 def initialize(format) valid_formats = Page::Screenshot::SUPPORTED_SCREENSHOT_FORMAT.join(" | ") super("Invalid value #{format} for option `:format` (#{valid_formats})") end |