Exception: Ferrum::InvalidScreenshotFormatError

Inherits:
Error
  • Object
show all
Defined in:
lib/ferrum/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(format) ⇒ InvalidScreenshotFormatError

Returns a new instance of InvalidScreenshotFormatError.



82
83
84
85
# File 'lib/ferrum/errors.rb', line 82

def initialize(format)
  valid_formats = Page::Screenshot::SUPPORTED_SCREENSHOT_FORMAT.join(" | ")
  super("Invalid value #{format} for option `:format` (#{valid_formats})")
end