Exception: ScrapCbf::MissingArgumentError
- Defined in:
- lib/scrap_cbf/errors.rb
Overview
Raised when a argument is required but it is missing.
Instance Method Summary collapse
-
#initialize(argument) ⇒ MissingArgumentError
constructor
A new instance of MissingArgumentError.
Constructor Details
#initialize(argument) ⇒ MissingArgumentError
20 21 22 23 |
# File 'lib/scrap_cbf/errors.rb', line 20 def initialize(argument) = "missing argument: #{argument}" super() end |